我想从jSMPP收到UniCode短信。
如果数据编码为8,我想将其转换为Unicode符号。
为此我使用HexUtil.convertBytesToHexString
函数。
但它没有正确转换它。我怎样才能转换这个字符串?
@Override
public void onAcceptDeliverSm(DeliverSm arg0)
throws ProcessRequestException {
if (MessageType.SMSC_DEL_RECEIPT.containedIn(arg0.getEsmClass())) {
// Deliver SM
} else {
byte[] data = arg0.getShortMessage();
String text = null;
if (arg0.getShortMessage() != null) {
if (arg0.getDataCoding() == (byte) 8) {
text = HexUtil.convertBytesToHexString(data, 0,
data.length);
} else {
text = new String(data);
}
}
System.out.println("Text -> " + text);
}
}
答案 0 :(得分:1)
尝试这种方式(使用您自己的编码检测):
if (msg.getEncoding().equals(Message.MessageEncodings.ENC7BIT)) {
text = msg.getText();
} else if (msg.getEncoding().equals(Message.MessageEncodings.ENCUCS2)) {
try {
text = new String(msg.getText().getBytes(), "UTF-16");
} catch (Exception ex) {
Logger.getLogger("smpp").error("Can't parce USC2 text: " + msg.getText() + ", " + ex.getMessage());
}
}
你也可以试试UTF-16LE,UTF-16BE编码,如果UTF-16显示不正确