今天刚研究JSP乱码问题,按照大家总结的经验一步步的做,但是始终解决不了。
我是在MyEclipse+Eclipse+tomcat5.0 中写的程序,在一个.jsp中添加了:<%@ page contentType="text/html; charset=GBK" pageEncoding="GBK"%>
和:<%request.setCharacterEncoding("GB2312");%>
然后我保存文件,在保存的过程中,MyEclipse就会询问我:The encoding (ISO-8859-1)cannot convert some characters(such as the one in position 567).Press 'OK' to save anyway(and some characters will be convert '?' in the saved file),or press 'cansel' to return to the editor.
我只能点击OK。然后部署它,可是这个.jsp文件在Tomcat下里面的中文全都是乱码了,我用IE执行它,永远都显示的是乱码。
这要怎么做呢,难道你们都不用MyEclipse+Eclipse+tomcat5.0来编写.jsp吗?