我正在创建一个应用程序,它将一个String列表发送到远程服务器。 我正在使用Jackson库来创建JSON。 问题是我不能在JSON中放置一个包含超过250个字符串的List。 JSON已创建但未“关闭”。这就是我的意思:
OutputStream out = new ByteArrayOutputStream();
final ObjectMapper mapper = new ObjectMapper();
try {
mapper.writeValue(out, myStringList);
} catch (IOException e) {
e.printStackTrace();
}
Log.d(TAG, new String(out.toString()));
这就是结果:
["s1","s2",....,"s249",
JSON保持原样。
可以构建的JSON大小有限制吗?
谢谢