2013-03-11 41 views
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")); 
    } 

回答

3

與流從一個String讀取,例如更換FileInputStream

try 
{ 
    fis = new ByteArrayInputStream(string.getBytes()); 
} catch (java.io.IOException e) { 
    System.out.println("Error reading string"); 
    return; 
}