在安卓中有现成的方法:
//字符串转byte[]
byte[] bytes = String.getBytes();
//byte[]转String
byte[] buffer = new byte[4096]
String content = new String(buffer);
在安卓中有现成的方法:
//字符串转byte[]
byte[] bytes = String.getBytes();
//byte[]转String
byte[] buffer = new byte[4096]
String content = new String(buffer);