3

我的 kSOAP Web 服务将 xml 返回到这种格式我如何从中country_name获取

    anyType{country=anyType{country_name=Egypt; }; 
    country=anyType{country_name=Pakistan; };
    country=anyType{country_name=United Kingdom; };
    country=anyType{country_name=United States; }; }
4

1 回答 1

1
Arraylist<String> countries = new ArrayList<String>();
for(int i=0;i<response.getPropertyCount();i++){

countries.add(response.getProperty(i).getPropertyAsString(0));


}
于 2012-08-06T11:34:34.073 回答