我正在做一个HttpPost
请求作为回报 我得到一个 XML 我可以把它吐司 我在一个字符串中
try {
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://xx.xx.xx.xx/login.asmx/login");
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = httpclient.execute(httppost);
String responseBody = EntityUtils.toString(response.getEntity());
Toast.makeText( getApplicationContext(),"responseBody: "+responseBody,Toast.LENGTH_SHORT).show();
XML看起来像
<root status="Y">
<mb mbcode="150201" mbname="AKASH KUNDU" branchid="1" pwd="admin"/>
</root>
我想解析这个 XML 并将这个数据存储为一个全局变量。我没有找到任何虔诚的例子,这就是为什么我冒充我是新来的提前谢谢。