Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はvbのようにAndroidで文字列コマンドを送信したいのですが、翻訳のように知りません
これは例です
char(&H1D)+ "V" + char(20)+ char(65)
アンドロイドでどのように翻訳できますか?
これはアスキーコードです。Char(20)=¶,char(65)=A Android では、以下を試すことができます。
String sMessage = "V" + (char)20 + (char)65;