首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

UnsupportedEncodingException cannot be resolved to a type解决思路

2012-03-17 
UnsupportedEncodingException cannot be resolved to a typeAn error occurred at line: 31 in the jsp f

UnsupportedEncodingException cannot be resolved to a type
An error occurred at line: 31 in the jsp file: /JSP/RegisterSuccess.jsp
UnsupportedEncodingException cannot be resolved to a type
28: byte b[]=s.getBytes("ISO-8859-1");
29: return (new String(b,"utf-8"));
30: }
31: catch(UnsupportedEncodingException ee )
32: {
33: return "缂栫爜杞崲閿欒:"+ee.getMessage();
34: }


不清楚这个怎么改,各位帮帮忙吧。谢啦。


[解决办法]
catch(UnsupportedEncodingException ee )直接改成catch(Exception ee)好了,或者打印出来看看是什么个情况
System.out.print(ee)
[解决办法]
UnsupportedEncodingException cannot be resolved to a type


你没有引入UnsupportedEncodingException 这个类
[解决办法]
因为你没有在JSP页面上将这个类导入进来:
<%@ page import="java.io.UnsupportedEncodingException" %> 
这样就可以了。

热点排行