java String、Json对象与byte数组转换
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
用途
- 测试String对象与byte数组转换方式
- 测试Json对象与byte数组转换方式
源代码
import java.io.UnsupportedEncodingException;
import java.util.Arrays;
import java.util.Date;
import com.alibaba.fastjson.JSONObject;
public class TestStringBytes {
public static void main(String[] args) {
System.out.println("测试string与 byte数组转换");
testStringBytesConvert("abc123张三");
System.out.println("测试json与byte数组转换");
testJsonByteConvert();
}
/**
* 测试string与 byte数组转换
*
* @param s
*/
public static void testStringBytesConvert(String s) {
try {
byte[] ba = s.getBytes("UTF-8");
String s_new = new String(ba, "UTF-8");
System.out.println("原始字符串:\t" + s);
System.out.println("byte数组地址:\t" + ba);
System.out.println("输出byte数组:\t" + Arrays.toString(ba));
System.out.println("转换为字符串:\t" + s_new);
System.out.println("---------------------------");
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
}
/**
* 测试json与byte数组转换
*/
public static void testJsonByteConvert() {
JSONObject json = new JSONObject();
json.put("id", 1);
json.put("name", "张三");
json.put("birthday", new Date());
json.put("age", 36);
testStringBytesConvert(json.toString());
}
}
输出结果
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
4 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献5条内容
所有评论(0)