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

请教如何输出?ùé

2012-01-03 
请问怎么输出??????如http://localhost:8080/bookstore/list.jsp?booktype所有书籍Stringbooktype b

请问怎么输出?ù???é??
如http://localhost:8080/bookstore/list.jsp?booktype=所有书籍
String   booktype= " ";
booktype=request.getParameter( "booktype ");
<%=booktype%> 就输出一堆问号什么的?
请问什么原因?

[解决办法]
String title1 =new String(request.getParameter( "booktype ").getBytes( "ISO-8859-1 "), "gb2312 ");
String title2 =new String(request.getParameter( "booktype ").getBytes( "ISO-8859-1 "), "GBK ");
String title1 =new String(request.getParameter( "booktype ").getBytes( "ISO-8859-1 "), "utf-8 ");
或者
String title1 =new String(request.getParameter( "booktype ").getBytes( "gb2312 "), "utf-8 ");多试几次 看看那个可以取到值

热点排行