解决java web前后台乱码
生活随笔
收集整理的這篇文章主要介紹了
解决java web前后台乱码
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
這個問題是對新手來說比較頭疼的問題了。
雖然沒什么難度,但是得搜到好的教程才行。?
加上doGet中的前兩行即可
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {// TODO Auto-generated method stub//response.getWriter().append("Served at: ").append(request.getContextPath());request.setCharacterEncoding("utf-8");//必須寫在第一位,因為采用這種方式去讀取數據,否則數據會出錯。 response.setContentType("text/html;charset=utf-8");//設置傳過去的頁面顯示的編碼String method=request.getParameter("method");try {if ("show".equals(method)){ show(request,response);}else if("add".equals(method)){add(request, response);}} catch (SQLException e) {// TODO Auto-generated catch block e.printStackTrace();}}問題解決。
轉載于:https://www.cnblogs.com/AbsolutelyPerfect/p/9278229.html
總結
以上是生活随笔為你收集整理的解决java web前后台乱码的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 计算机的组成及功能
- 下一篇: C#基础知识点梳理一