摘要:Android big5 byte array to hex
//big5 to byte array to hex
public String genSMSRSA(String cmd) {
try {
byte[] bytes = cmd.getBytes("big5"); //先將原本的字串轉為byte array
String rsaHex = SmsTools.getRsa(SGJavaScript.byteArrayToHex(bytes)); //再透過SGJavaScript.byteArrayToHex() 將資料轉為Hex
//String rsaHex = SmsTools.getRsa(cmd);
sgMemory.getSMSRSA(rsaHex);
return rsaHex;
}
catch (Exception e) {
sgMemory.setLastError(SGReturnCode.ERRCODE_99999999);
return "";
}
}
byte[] bytes = cmd.getBytes("big5");
String rsaHex = SmsTools.getRsa(SGJavaScript.byteArrayToHex(bytes));
紅色部分為主要的code
其餘部分只是陪襯而已,只code無法直接複製貼上使用
寫文章並不為了什麼,只是撰寫文章的過程中,可以使我的去思考更多層面的東西,寫的過程中也可以再次回味學習到的東西,並深刻的印象在腦中。
當你還在找這些資訊學習時,我想安逸的生活還不適合你,一起努力吧。