android中的字符串是否有任何限制。 我在http请求之后收到响应,这是一个更大的字符串。 我的问题是我没有得到整个字符串。 可能是什么原因? 我正在使用此代码
response = httpclient.execute(httppost);
String responseBody = EntityUtils.toString(response.getEntity()); // response string
GlobalClass.printLine("Response >> " + responseBody);
答案 0 :(得分:1)
我认为没有,但在我看来,它更像是日志文件或你的
GlobalClass.printLine("Response >> " + responseBody);
有限制。你能尝试将String保存在文件中吗?