這篇文章給大家分享的是有關(guān)幾種常見的java亂碼情況的解決方法,小編覺得挺實(shí)用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲。
創(chuàng)新互聯(lián)專業(yè)成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作,集網(wǎng)站策劃、網(wǎng)站設(shè)計(jì)、網(wǎng)站制作于一體,網(wǎng)站seo、網(wǎng)站優(yōu)化、網(wǎng)站營銷、軟文發(fā)布平臺(tái)等專業(yè)人才根據(jù)搜索規(guī)律編程設(shè)計(jì),讓網(wǎng)站在運(yùn)行后,在搜索中有好的表現(xiàn),專業(yè)設(shè)計(jì)制作為您帶來效益的網(wǎng)站!讓網(wǎng)站建設(shè)為您創(chuàng)造效益。1、在Servlet中獲得通過get方式傳遞到服務(wù)器的數(shù)據(jù)時(shí)出現(xiàn)亂碼;
public class RegistServlet extends HttpServlet{ @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { String name = req.getParameter("userName"); byte[] bytes = name.getBytes("ISO8859-1"); String newName = new String(bytes,"UTF-8"); } @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { doGet(req, resp); } }
解析:在doGet方法中定義一個(gè)name變量獲得封裝在服務(wù)器的客戶端數(shù)據(jù)userName,然后將name以“ISO8859-1”的方式賦值給字節(jié)數(shù)組bytes,最后將此bytes數(shù)組以UTF-8的方式賦值給一個(gè)新創(chuàng)建的String變量newName,此時(shí)newName就是能正常顯示的數(shù)據(jù),之所以這么麻煩,是因?yàn)闆]有直接的辦法一行代碼解決,可以就當(dāng)此方法為固定用法。
2、在Servlet中獲得通過post方式傳遞到服務(wù)器的數(shù)據(jù)時(shí)出現(xiàn)亂碼;
public class RegistServlet extends HttpServlet{ @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { //注意:post方式提交數(shù)據(jù)的亂碼解決方式,放在getParameXXX方法之前 req.setCharacterEncoding("UTF-8"); //得到前臺(tái)input框中name="username"和password="password"的value值 String username = req.getParameter("username"); String password = req.getParameter("password"); } @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { doGet(req, resp); } }
解析:post傳遞方式下解決亂碼問題很簡單,就req.setCharacterEncoding(“UTF-8”); 這一行代碼,但需注意,要將這句話放在獲取數(shù)據(jù)之前。
3、Servlet通過服務(wù)器將數(shù)據(jù)響應(yīng)到客戶端時(shí)出現(xiàn)亂碼;
public class RegistServlet extends HttpServlet{ @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { //方式一: resp.setContentType("text/html;charset=utf-8"); //方式二: resp.setHeader("Content-type", "text/html"); resp.setCharacterEncoding("UTF-8"); } @Override protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { doGet(req, resp); } }
解析:注意,以上兩種方法在應(yīng)用時(shí)要寫在輸出方法之前,另外,兩種方式效果一樣,因?yàn)榉绞揭惠^簡潔,常用方式一。
4、HTML或JSP頁面在客戶端展示時(shí)出現(xiàn)的亂碼情況。
form表單
以上就是幾種常見的java亂碼情況的解決方法了,看完之后是否有所收獲呢?如果想了解更多相關(guān)內(nèi)容,歡迎關(guān)注創(chuàng)新互聯(lián)成都網(wǎng)站設(shè)計(jì)公司行業(yè)資訊!
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。