我正在通过 android 中的 USB 通信以扩展 ASCII 字符的形式接收字符串文本,例如
String receivedText = "5286T11ɬ ªË ¦¿¯¾ ¯¾ ɬ ¨¬°:A011605286 ª¿ª ¾®:12:45 ¸Í®°:(9619441121)ª¿ª:-, ®¹¿¦Í°¾ ¡ ®¹¿¦Í°¾ ª¨À, ¾¦¿µ²À ¸Í, ¾¦¿µ²À ªÂ°Íµ °¿®¾°Í͸:- ¡Í°Éª:-, ¬¾¹°, ¸¾¤¾Í°Â¼ ªÂ°Íµ~";
现在这些字符在印地语中代表一个字符串。
我不知道如何将此接收到的字符串转换为印地语等效文本。任何人都知道如何使用 java 将其转换为等效的印地语文本
以下是我用来将字节数组转换为字节字符串的一段代码
public String byteArrayToByteString(byte[] arayValue, int size) {
byte ch = 0x00;
int i = 0;
if (arayValue == null || arayValue.length <= 0)
return null;
String pseudo[] = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9",
"A", "B", "C", "D", "E", "F" };
StringBuffer out = new StringBuffer();
while (i < size) {
ch = (byte) (arayValue[i] & 0xF0); // Strip off high nibble
ch = (byte) (ch >>> 4); // shift the bits down
ch = (byte) (ch & 0x0F); // must do this is high order bit is on!
out.append(pseudo[(int) ch]); // convert the nibble to a String
// Character
ch = (byte) (arayValue[i] & 0x0F); // Strip off low nibble
out.append(pseudo[(int) ch]); // convert the nibble to a String
// Character
i++;
}
String rslt = new String(out);
return rslt;
}
让我知道这是否有助于找到解决方案
编辑:
它是 UTF-16 编码,receivedText 字符串中的字符是印地语字符的扩展 ASCII 形式
新编辑
我有新角色
String value = "?®Á?Ƕ ¡??°¿¯¾";
印地语中的मुकेश和印地语中的dangaria。谷歌翻译器不会翻译印地语的 dangaria,所以我无法为您提供印地语版本。
我与正在编码的人交谈,他说他在编码之前从输入中删除了 2 位,即如果 \u0905 在印地语中表示 अ,那么他从输入中删除 \u09 并将剩余的 05 转换为扩展的十六进制形式。
因此,我提供给您的新输入字符串以上述解释的形式进行了解码。即 \u09 被删除,其余被转换为扩展 ascii,然后使用 USB 发送到设备。
让我知道这个解释是否可以帮助您找到解决方案