通过这个函数,我从服务器得到了一个字符串作为响应:
String responseBody = EntityUtils.toString(response.getEntity());
我检索的字符串值或多或少是这样的:
"http://url.com 765889"
我想将 URL 和数字分成 2 个字符串值,它应该是:
String 1="http://url.com"
String 2="765889"
我怎样才能做到这一点?
最佳答案
也许像这样
String 1 = responseBody.substring(0,responseBody.indexOf(" ")-1);
String 2 = responseBody.substring(responseBody.indexOf(" ").responseBody.length()-1);
关于Android:将一个字符串从 responseBody 分成 2 个字符串值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8613929/