java
我今天的问题是,我很好奇在使用ksoap2
-library 逐个元素解析时是否存在近亲和/或等价关系。
例如objective-c
:
public void didEndElement(args....){
if occurring element is thisElement
//do something with the value in the element
}
public void didStartElement(args....){
if occurring element is thisElement
//do something with the value in the element
}
而在java
SoapObject foo = (SoapObject)bar.getProperty(enum);
aString = foo.getProperty(enum);
aNotherString = foo.getProperty(anotherEnum);
所以,基本上,我们想做的是,
即兴java
语法:
if(currentElement == "myElement")
aVar = valueInElement;
// or
a[1] = valueInElement;
我知道这可能有很多要求,但是如果可能的话,我可以在哪里获得有关此的任何信息的任何指针或提示。