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.
我想在 android 中发送字符串命令,就像在 vb 中一样,但我不知道喜欢翻译
这是一个例子
字符(&H1D)+“V”+字符(20)+字符(65)
如何在android中翻译?
这是ASCII码。Char(20)=¶,char(65)=A 在Android中,你可以试试:
String sMessage = "V" + (char)20 + (char)65;