Question: Just write html+jsp code when some Chinese, when saving prompt Sava could not be completed. Reason:some characters cannot be mapped using "iso-8859-1" character encoding. Either change the encoding or remove the characters which is not supportedby the "iso-8859-1" character encoding. WORKAROUND: 1.& lt;%@ page language= "java" pageencoding= "iso-8859-1"%> change iso-8859-1 to UTF-8 or gb2312 or GBK suggest change to utf-82.<%@ page Language= "java" import= "java.util.*" pageencoding= "gb2312"%> Set the pageenconding to GBK or gb2312.3. It is advisable to change the LZ in the MyEclipse; step: Select window--in the toolbar myeclipse Enterprise workbench--"Files and editors--"jsp--> to change encoding to Chinese national StandardMyeclipse7.5 later version please change in the following location. Menu--myeclipse--preferences--myeclipse Enterprise workbench--files and editors--jsp--> change encoding to Chinese national Standard will be able to later you build JSP page no need to change the code!
MyEclipse JSP page characters cannot be saved