我有一个获取XML字符串的方法,理论上应该在每个特定标记之前插入注释。我想知道如何让它发挥作用
Info.plist
public static String addCommentXML(String xmlString, String tagName, String comment)
{
StringBuilder sb = new StringBuilder(xmlString);
for(int i = 0; i < sb.toString().length(); i++)
{
if(sb.toString().toLowerCase().contains("<"+tagName+">"))
{
sb.insert(sb.toString().indexOf("<"+tagName+">", i) - 1, "<!--"+ comment+"-->"+"\n");
}
}
return sb.toString();
}
的输出
应该是
addCommentXML("somereallylongxml", "second", "it’s a comment")
但它显然不起作用,因为我不知道如何正确地遍历字符串以在每个tagName之前添加,而不仅仅是第一个,所以我们得到无限循环。我怎么能这样做?
答案 0 :(得分:1)
可以使用JSOUP库轻松完成。它是使用HTML / XML的完美工具。
https://mvnrepository.com/artifact/org.jsoup/jsoup/1.10.3
在您的情况下,它将如下所示:
public static void main(String[] args) {
String processedXml = addCommentXML(getDocument(), "second", "it's a comment");
System.out.println(processedXml);
}
private static String addCommentXML(String xmlString, String tagName, String comment) {
Document document = Jsoup.parse(xmlString);
document.getElementsByTag(tagName).before("<!--" + comment + "-->");
return document.toString();
}
private static String getDocument() {
return "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n" +
"<first>\n" +
"<second>some string</second>\n" +
"<second>some string</second>\n" +
"<second><![CDATA[need CDATA because of < and >]]></second>\n" +
"<second/>\n" +
"</first>";
}
<强>输出强>:
<html>
<head></head>
<body>
<first>
<!--it's a comment-->
<second>
some string
</second>
<!--it's a comment-->
<second>
some string
</second>
<!--it's a comment-->
<second>
need CDATA because of < and >
</second>
<!--it's a comment-->
<second />
</first>
</body>
</html>
&#13;
答案 1 :(得分:0)
这里提出的解决方案非常简单:通过标记名拆分输入,然后将各个部分连接在一起并在其间插入注释和标记名。
public static String addCommentXML(String xmlString, String tagName, String comment)
{
String[] parts = xmlString.split("\\Q<" + tagName + ">\\E");
String output = parts[0];
for (int i = 1 ; i < parts.length ; i++) {
output += comment + "<" + tagName + ">" + parts[i];
}
return output;
}
亲:不需要第三方的lib con:这个方法并没有真正解析xml,因此,有时它会产生错误的结果(比如在注释中找到标记...)