从服务器返回到我的Android应用程序的POST消息响应是一篇文章。遗憾的是,String数据类型无法存储整篇文章。
你能建议我可以这样使用的数据类型:
HttpResponse response = httpclient.execute(httppost);
HttpEntity resEntity = response.getEntity();
String result = EntityUtils.toString(resEntity);
当我System.out.println(result)
时,它没有向我展示整篇文章。
答案 0 :(得分:8)
我认为这不是String
尺寸问题。
例如
用字符覆盖的A4页面存储约5000个字符。根据{{3}},String
的最大长度为2147483647个字符。
2147483647/5000 = 429496 pages
EncyclopædiaBritannica有32640页,大约44000000个单词,每个单词平均6.1个字符。
你为什么要发送8枚Encyclopædias?