我正在存储来自 JSONObject 的字节数组。这个字节数组是一个文件数据。
JSONObject 是这样的:
例如:{“文件数据”:[23,21,2,5]}
JSONObject jsonObject = new JSONObject(apidata);
String imagedata = jsonObject.getJSONArray("FileData").toString();
Gson gson = new Gson();
byte[] filebytes = gson.fromJson(imagedata, byte[].class);
它适用于小字节数组。但如果“FileData”是大数组,则存储字符串变量时出现内存不足错误。请帮助我如何克服这个问题。