3
html 파일에서 xhtml 파일을 만들려고하는데 오류가 있습니다. 변환하는 동안 나는 다음과 같은 오류가 발생합니다 : 끝에jTidy html to xhtml이 빈 파일을 반환합니다.
Tidy tidy = new Tidy(); //HTML parser and pretty printer.
tidy.setXHTML(true); //true if tidy should output XHTML
tidy.parse(fin, fout);
내가 빈 파일을받을 :
line 1 column 1 - Warning: inserting missing 'title' element
InputStream: Document content looks like HTML 2.0
1 warning, no errors were found!
내 코드는 다음과 같다. 내가 도대체 뭘 잘못하고있는 겁니까? 감사합니다
, ZOLI
이것은 나를 위해 작동하지 않았다. JTidy와 함께 2009-12-01 – Scribblemacher