我的JSON
.
JSON
[{"template":167,255,1,30,179,0,218,0,2,88,1,184,0],
"template2":null,
"template3":null,
"Client_Id":1160739}]
在Java中,我怎样才能恢复这个字节数组?
我尝试在字节数组中返回一个字符串JSON
,但是当我转换为字节时,它会改变我需要的值。例如,167 是我需要的值,因为这已经是字节值,但是如果我尝试将 167 转换为字节,它将返回另一个值,所以我需要将其恢复为字节值。
JAVA
ArrayList<JSONObject> vetor = ArrayJson(client);
byte[] template = (byte[])vetor.get(0).get("template");
我正在使用json.org/java存储库来构造 json 帮助器类。