2011年12月14日 星期三

JSP寫入資料庫時生亂碼

JSP寫入資料庫時生亂碼,經過多次嘗試後,只要在連線字串上加上指定編碼即可,
jdbc:mysql://localhost:3306/travel?useUnicode=true&characterEncoding=UTF-8

JSP→網頁傳值時發現會出現亂碼~

最近使用JSP時,網頁傳值時發現會出現亂碼~
上網查了一下,發現只要使用(往下看),亂碼就變中文囉,解決。

String id=new String(request.getParameter("id").getBytes("ISO8859-1"),"UTF-8");
String name = new String(request.getParameter("name").getBytes("ISO8859-1"),"UTF-8");