Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何访问 done 节点的 = 子元素,如下面的 XOM 代码所示?
<done>=<start></start></done>
如果你有done Element节点,那么done.getChild(0)会给你一个Text节点,你可以调用它getValue()来获得一个Stringwith =。
done
Element
done.getChild(0)
Text
getValue()
String
=