Android 关于SoapObject.getProperty的作用

SoapObject result = (SoapObject) envelope.bodyIn;

String str = result.getProperty("abc").toString();

其中result.getProperty("abc")的作用是:

从result里面找到名为"abc"的值

举例:

假设result的值为:getInfoResponse{abc=测试; }

那么,result.getProperty("abc")将会从result里面找到abc的值“测试”

 

 

 

你可能感兴趣的:(android,测试)