我需要能够操作xhtml文件的内容,然后将所有内容写回xhtml文件。 Jsoup有可能吗?
答案 0 :(得分:0)
阅读: How do I load a local html file into Jsoup?
File in = new File(input);
Document doc = JSoup.parse(in, null);
做点什么!
保存:How to save a Jsoup Document to an HTML file?
File f = new File(output);
FileUtils.writeStringToFile(f, doc.outerHtml(), "UTF-8");