如果使用MyEclipse開發JSP網頁時,在網頁中有使用中文的話,會出現下列錯誤訊息:
Encoding warning
The encoding(ISO-8859-1) cannot convert some characters (such as the one in position 308). Press ‘OK’ to save anyway (and some characters will be converted to ‘?” in the saved file), or press ‘Cancel’ to return to the editor.
解決此問題的方式是將網頁中的下列這行內容:
<%@ page language="java"%>
改為下列這行即可:
<%@ page language="java" contentType="text/html; charset=big5" %>
MyEclipse蠻厲害的!還能夠檢查到charset的設定。
我??了,?是不行啊,??必指教
因為HTML格式的問題,原本文章的內容有誤,以更正.