1
android中的字符串是否有任何限制。 我得到一个更大的字符串的http请求后的响应。 我的问题是,我没有得到整个字符串。 可能是什么原因? 我使用此代码android中的字符串限制
response = httpclient.execute(httppost);
String responseBody = EntityUtils.toString(response.getEntity()); // response string
GlobalClass.printLine("Response >> " + responseBody);
如果您使用LogCat,您将显示所有显示的字符串 – Houcine