我使用Jsoup庫。Jsoup中的字符集
後,以下代碼的執行:
Document doc = new Document(language);
File input = new File("filePath" + "filename.html");
PrintWriter writer = new PrintWriter(input, "UTF-8");
String contentType = "<%@ page contentType=\"text/html; charset=UTF-8\" %>";
doc.appendText(contentType);
writer.write(doc.toString());
writer.flush();
writer.close();
在輸出HTML文件,我收到文本的下面一行:
<%@ page contentType="text/html; charset=UTF-8" %>
,而不是
<%@ page contentType="text/html; charset=UTF-8" %>
可能是什麼問題?
它不太清楚你想要代碼實際上做什麼,也許你可以包括其餘的代碼呢? – JonasCz