Home Database Mysql Tutorial Servlet+JSP+MySQL5.6模式下开发web应用出现的中文乱码处理

Servlet+JSP+MySQL5.6模式下开发web应用出现的中文乱码处理

Jun 07, 2016 pm 03:39 PM
web develop model

为了规范 我们使用UTF-8编码为例 我用的web开发软件是 MyEclipse8.5 MySQL5.6 tomcat7 1.弄明白一个web应用从数据库到jsp页面可能经历了哪几层编码的转化 大致是以下的流程 浏览器解释jsp文件所用的编码 - jsp,java文件等等本身的编码 - request接受数据 传

为了规范 我们使用UTF-8编码为例 我用的web开发软件是 MyEclipse8.5  MySQL5.6  tomcat7


1.弄明白一个web应用从数据库到jsp页面可能经历了哪几层编码的转化 大致是以下的流程


 浏览器解释jsp文件所用的编码      jsp,java文件等等本身的编码    request接受数据 传递数据时所用的编码 或者是form表单提交数据所用的编码   Tomcat服务器接受数据时用的编码 Tomcat服务器传递数据给Servlet所用的编码 在servlet中使用sql语句的编码(一般与java文件本身的的编码一致) 数据库中存储数据使用的编码


 2.现在说说怎么去设置每个流程的编码


①.浏览器解释jsp文件所用的编码  

在servlet文件中 doGet()方法的第一句应该为这条语句"response.setContentType("text/html;charset=utf-8");" doPost()方法应该为 this.doGet() 

在jsp文件中的第一句 加上“ ”  


②.jsp.java文件等等本身的编码

 jsp文件中添加这句

同时为了保险  在MyEclipse中做一些设置 

首先对你的web工程名右键选择properties -> Resource -> 选择Text file encoding为UTF-8

然后Window -> Preferences -> MyEclipse -> Files and Editors 把所有的与你的web工程有关的文件比如jsp css xml 的编码全部设置为 ISO 10640/Unicode(UTF-8)

③.request接受数据 传递数据所用的编码 (这个说实话我并没有指定也解决了中文乱码)  但为了保险 我还是把方法写在这里

所有的servlet 文件里面的doGet方法的第一句为request.setCharacterEncoding("UTF-8"); 与前面说的稍有冲突 但基本无影响 doPost()方法应该为 this.doGet()

所有的jsp文件也是一样 在用到request之前就指定编码

至于form表单提交时的编码问题 我并没有指定

④.Tomcat服务器接收数据时所用的编码

这个很简单 在Tomcat目录下的server.xml文件里面 找到

                       connectionTimeout="20000"
               redirectPort="8443" />  改为

               connectionTimeout="20000"
               redirectPort="8443" URIEncoding="UTF-8" /> 

⑤.sql语句的编码与数据库存储数据时指定的编码

网上大多数人都说 为了编码一致 必须在mysql数据库中所有的地方都要使用一样的编码 如UTF-8  于是就要这样做  mysql> set names 'UTF-8'; 还有的人说 在my.ini里面 设置默认编码为UTF-8 当然这个是以前的MySQL版本了 MySQL5.6是没有my.ini这个文件的  至少我没找到

诚然 以上的办法也许能够解决问题 但不幸的是 在我这里确实无法解决

但根据我自己的理解来说 

这里存在一个问题 当你右键控制台窗口 选择默认值的时候 默认代码页是没有UTF-8的 只有 437 OEM 美国 和 GBK 这里无法保证编码的统一性 

如果使用set names 这样的sql语句指定编码一致的话  会出问题 

然后 那又该如何解决? 首先确保你的默认代码页是GBK  

使用sql语句 mysql>show variables like 'character_set_%'; 查看mysql字符集

    确保结果是这样

mysql> show variables like 'character_set_%';
+--------------------------+----------------------------+
| Variable_name            | Value                      |
+--------------------------+----------------------------+
| character_set_client     | gbk                       |
| character_set_connection | gbk                       |
| character_set_database   | utf8                       |
| character_set_filesystem | binary                     |
| character_set_results    | gbk                       |
| character_set_server     | utf8                       |
| character_set_system     | utf8                       |
| character_sets_dir       | /usr/share/mysql/charsets/ |
+--------------------------+----------------------------+


如果不是 请使用sql语句 形如 mysql> set character_set_client=gbk; 这样来逐个修改编码


经过以上的修改 请重启tomcat服务器 mysql数据库 


我的数据库 jsp页面的乱码就这样实实在在的解决了 无论是jsp页面插入中文数据到数据库 还是从数据库中提取数据到jsp页面的显示 都没问题了


很是希望以上的办法能够帮助到与我一样陷入乱码痛苦的码农们 在下才疏学浅 如果你觉得有帮助 那是我的荣幸  如果你觉得没帮助 也请别喷 


如果说以上的一些说法有问题 恳请广大网友指正 小弟感激不尽!








Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Four recommended AI-assisted programming tools Four recommended AI-assisted programming tools Apr 22, 2024 pm 05:34 PM

This AI-assisted programming tool has unearthed a large number of useful AI-assisted programming tools in this stage of rapid AI development. AI-assisted programming tools can improve development efficiency, improve code quality, and reduce bug rates. They are important assistants in the modern software development process. Today Dayao will share with you 4 AI-assisted programming tools (and all support C# language). I hope it will be helpful to everyone. https://github.com/YSGStudyHards/DotNetGuide1.GitHubCopilotGitHubCopilot is an AI coding assistant that helps you write code faster and with less effort, so you can focus more on problem solving and collaboration. Git

Do Not Disturb Mode Not Working in iPhone: Fix Do Not Disturb Mode Not Working in iPhone: Fix Apr 24, 2024 pm 04:50 PM

Even answering calls in Do Not Disturb mode can be a very annoying experience. As the name suggests, Do Not Disturb mode turns off all incoming call notifications and alerts from emails, messages, etc. You can follow these solution sets to fix it. Fix 1 – Enable Focus Mode Enable focus mode on your phone. Step 1 – Swipe down from the top to access Control Center. Step 2 – Next, enable “Focus Mode” on your phone. Focus Mode enables Do Not Disturb mode on your phone. It won't cause any incoming call alerts to appear on your phone. Fix 2 – Change Focus Mode Settings If there are some issues in the focus mode settings, you should fix them. Step 1 – Open your iPhone settings window. Step 2 – Next, turn on the Focus mode settings

Learn how to develop mobile applications using Go language Learn how to develop mobile applications using Go language Mar 28, 2024 pm 10:00 PM

Go language development mobile application tutorial As the mobile application market continues to boom, more and more developers are beginning to explore how to use Go language to develop mobile applications. As a simple and efficient programming language, Go language has also shown strong potential in mobile application development. This article will introduce in detail how to use Go language to develop mobile applications, and attach specific code examples to help readers get started quickly and start developing their own mobile applications. 1. Preparation Before starting, we need to prepare the development environment and tools. head

Which AI programmer is the best? Explore the potential of Devin, Tongyi Lingma and SWE-agent Which AI programmer is the best? Explore the potential of Devin, Tongyi Lingma and SWE-agent Apr 07, 2024 am 09:10 AM

On March 3, 2022, less than a month after the birth of the world's first AI programmer Devin, the NLP team of Princeton University developed an open source AI programmer SWE-agent. It leverages the GPT-4 model to automatically resolve issues in GitHub repositories. SWE-agent's performance on the SWE-bench test set is similar to Devin, taking an average of 93 seconds and solving 12.29% of the problems. By interacting with a dedicated terminal, SWE-agent can open and search file contents, use automatic syntax checking, edit specific lines, and write and execute tests. (Note: The above content is a slight adjustment of the original content, but the key information in the original text is retained and does not exceed the specified word limit.) SWE-A

Understanding VSCode: What is this tool used for? Understanding VSCode: What is this tool used for? Mar 25, 2024 pm 03:06 PM

"Understanding VSCode: What is this tool used for?" 》As a programmer, whether you are a beginner or an experienced developer, you cannot do without the use of code editing tools. Among many editing tools, Visual Studio Code (VSCode for short) is very popular among developers as an open source, lightweight, and powerful code editor. So, what exactly is VSCode used for? This article will delve into the functions and uses of VSCode and provide specific code examples to help readers

Is PHP front-end or back-end in web development? Is PHP front-end or back-end in web development? Mar 24, 2024 pm 02:18 PM

PHP belongs to the backend in web development. PHP is a server-side scripting language, mainly used to process server-side logic and generate dynamic web content. Compared with front-end technology, PHP is more used for back-end operations such as interacting with databases, processing user requests, and generating page content. Next, specific code examples will be used to illustrate the application of PHP in back-end development. First, let's look at a simple PHP code example for connecting to a database and querying data:

How to enable administrative access from the cockpit web UI How to enable administrative access from the cockpit web UI Mar 20, 2024 pm 06:56 PM

Cockpit is a web-based graphical interface for Linux servers. It is mainly intended to make managing Linux servers easier for new/expert users. In this article, we will discuss Cockpit access modes and how to switch administrative access to Cockpit from CockpitWebUI. Content Topics: Cockpit Entry Modes Finding the Current Cockpit Access Mode Enable Administrative Access for Cockpit from CockpitWebUI Disabling Administrative Access for Cockpit from CockpitWebUI Conclusion Cockpit Entry Modes The cockpit has two access modes: Restricted Access: This is the default for the cockpit access mode. In this access mode you cannot access the web user from the cockpit

Exploring Go language front-end technology: a new vision for front-end development Exploring Go language front-end technology: a new vision for front-end development Mar 28, 2024 pm 01:06 PM

As a fast and efficient programming language, Go language is widely popular in the field of back-end development. However, few people associate Go language with front-end development. In fact, using Go language for front-end development can not only improve efficiency, but also bring new horizons to developers. This article will explore the possibility of using the Go language for front-end development and provide specific code examples to help readers better understand this area. In traditional front-end development, JavaScript, HTML, and CSS are often used to build user interfaces

See all articles