2
我正在使用JTidy我想給它一個字符串作爲輸入,而不是文件。那可能嗎? 我該怎麼做?Java:從HTML文本Jtidy轉換爲XHTML文本
這是我的代碼:
FileInputStream fis =null;
String htmlFileName = "report.html";
//from html to xhtml
try
{
fis = new FileInputStream(htmlFileName);
}
catch (java.io.FileNotFoundException e)
{
System.out.println("File not found: " + htmlFileName);
}
Tidy tidy = new Tidy();
tidy.setShowWarnings(false);
tidy.setXmlTags(false);
tidy.setInputEncoding("UTF-8");
tidy.setOutputEncoding("UTF-8");
tidy.setXHTML(true);//
tidy.setMakeClean(true);
Document xmlDoc = tidy.parseDOM(fis, null);
try
{
tidy.pprint(xmlDoc,new FileOutputStream("report.xhtml"));
}