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.
<root> <title>Title<id>244</id></title> <value>sample</value> </root>
在上面的 xml 中,我必须用另一个值“Hello”更新标题标签的内容。这样我的 XML 就变成了
<root> <title>Hello<id>244</id></title> <value>sample</value> </root>
但我不会通过在 Java 中使用 DOM Parser 来达到同样的目的。
有人有什么建议吗?
因此,当您获得字符串标签时,只需交换主字符串,您就可以像这样解析: String stringToParseXML = oldString.replace("Title244","Hello244");