UCS-2为Android启用了0级短信

时间:2013-12-12 00:08:33

标签: android sms ucs2

我正在寻找一种方法来发送0级短信而不会弄乱UCS-2编码。

线程Class 0 SMS (flash SMS) on Android中的答案似乎与UCS-2编码混乱,因为普通文本发送和接收良好,但需要UCS-2编码的语言显示为垃圾字符。

发送时,http://i.stack.imgur.com/xTX8m.png

在这两种情况下,都会收到http://i.stack.imgur.com/UcYxS.png

两者,[线程中的第二个答案,stackoverflow.com / a / 9424185/3082310]

byte[] encodedMessage = pdus.encodedMessage;
// byte[0] = mtiByte
// byte[1] = TP Message Reference
// byte[2] = length of source phone
// byte[3..length] = phone
// protocol identifier
int msgLen = encodedMessage[2] / 2;
// +2 -> length of source phone
// +2 -> for 91 after the length
// +1 -> TP PID
int indexTPDCS = msgLen + 5;
byte TPDCS = encodedMessage[indexTPDCS];

byte[] changedMessage = encodedMessage.clone();
// Set bit 4 to 1 using OR (|), indicating there is a message class
// Set bit 0 and 1 to 0 using AND (&), indicating class 0
byte newTPDCS = (byte) ((TPDCS | 0x10) & 0xFC); // Flash SMS
changedMessage[indexTPDCS] = newTPDCS; // Class 0

并且,[ZeroSMS,github.com/virtualabs/ZeroSMS]

/* change class to Class 0 *
int size;
size = (int)pdus.encodedMessage[2];
size = (size/2) + (size%2);
pdus.encodedMessage[size+5] = (byte)0xF0;

似乎给出相同的结果。

关于问题所在的任何想法?

1 个答案:

答案 0 :(得分:0)

似乎需要if-then或switch-case语句: 对于7位编码,如英语

使用(byte)0xF0

对于16位编码,UCS-2编码

使用(byte) 0x18

否则,如果输入不支持的语言,则会出现垃圾字符。