java解決中文亂碼的方法:
POST請求中文亂碼處理(在取得參數值之前設定)
req.setCharacterEncoding("UTF-8");
GET請求處理中文亂碼
//String username = req.getParameter("username"); username = new String(username.getBytes("ISO-8859-1"), "UTF-8"); //缩写方式 username = new String(req.getParameter("username").getBytes("ISO-8859-1"), "UTF-8"); System.out.println(username);
回應中文亂碼問題
res.setContentType("text/html;charset=utf-8"); res.getWriter().println("你好,世界~");
更多java知識請關注java基礎教學欄位。
以上是java解決中文亂碼的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!