总结我遇见关于eclipse乱码问题解决办法

1.学习jsp传值到jsp时候,接受数据的jsp页面显示的中文字符是乱码,将所有的utf-8编码用小写的形式写出,解决问题。
2.windows->preferences -> general ->content types里面text->下面的全部default encoding都改为utf-8.
3.windows->preferences->web->JSP file  将右方窗口的Ecoding改成utf-8,将默认的编码方式改成utf-8
4.Servlet 中request.getParamter("参数名")但是获得的中文是乱码,
原因:数据在URL中传输用iso-8859-1。
解决:String str = new String(request.getParamter("参数名").getBytes("iso-8859-1"),utf-8);

你可能感兴趣的:(总结我遇见关于eclipse乱码问题解决办法)