第一:
- 选择一种编码。通常,UTF-8是一个不错的选择。坚持绝对对双方都有效的编码。很少使用UTF-8或UTF-16以外的东西。
传输端:
- 将字符串编码为字节(例如
text.getBytes(encodingName)
)
- 使用
Base64
该类将字节编码为base64
- 传输base64
接收端:
- 接收base64
- 使用
Base64
该类将base64解码为字节
- 将字节解码为字符串(例如
new String(bytes, encodingName)
)
所以像这样:
// Sending side
byte[] data = text.getBytes("UTF-8");
String base64 = Base64.encodeToString(data, Base64.DEFAULT);
// Receiving side
byte[] data = Base64.decode(base64, Base64.DEFAULT);
String text = new String(data, "UTF-8");
或搭配StandardCharsets
:
// Sending side
byte[] data = text.getBytes(StandardCharsets.UTF_8);
String base64 = Base64.encodeToString(data, Base64.DEFAULT);
// Receiving side
byte[] data = Base64.decode(base64, Base64.DEFAULT);
String text = new String(data, StandardCharsets.UTF_8);
import android.util.Base64;
,然后才能根据需要使用Base64.encodeToString
&Base64.decode