The problem of Chinese garbled characters appearing when connecting to MySQL database in Idea

The problem of Chinese garbled characters appearing when connecting to MySQL database in Idea

Problem: When using JDBC to connect to the MySQL database, garbled characters are displayed when inserting Chinese characters Solution: Insert the following code into the connection code

String url = "jdbc:mysql://localhost:3306/your database name?useUnicode=true&characterEncoding=utf8&serverTimezone=UTC&useSSL=false";

Code Interpretation

useUnicode=true&characterEncoding=utf8

The above code has two effects:
1. When storing data:
When storing project data, the database will first decode the data into bytecode using the UTF-8 format, and then store the decoded bytecode back into the database using the GBK encoding.

2. When fetching data:
When retrieving data from the database, the database will first decode the data in the database into bytecode in GBK format, then re-encode the decoded bytecode in UTF-8 format, and finally return the data to the client.

serverTimezone=UTC

The above code is to specify the time zone. After adding this code, the time zone error will not be reported.

useSSL=false

For higher versions of MySQL, you need to specify whether to use an SSL connection.

This is the end of this article about the problem of garbled Chinese characters when Idea connects to MySQL database. For more related content about garbled Chinese characters when Idea connects to MySQL database, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Solve the problem that the Terminal in idea cannot execute GIT commands + Terminal Chinese garbled characters
  • IntelliJ Idea 2020.1 is officially released, officially supports Chinese (must read)
  • Solve the problem of IntelliJ IDEA console outputting garbled Chinese characters (the simplest one in history)
  • Detailed explanation of the solution to the problem of garbled Chinese characters in the .properties file in Intellij IDEA
  • IntelliJ IDEA is now available in Chinese

<<:  Chinese website user experience rankings

>>:  How to use CSS styles and selectors

Recommend

Detailed explanation of flex and position compatibility mining notes

Today I had some free time to write a website for...

In-depth understanding of the seven communication methods of Vue components

Table of contents 1. props/$emit Introduction Cod...

Several methods to execute sql files under mysql command line

Table of contents The first method: When the MySQ...

Use native js to simulate the scrolling effect of live bullet screen

Table of contents 1. Basic principles 2. Specific...

Native js to achieve seamless carousel effect

Native js realizes the carousel effect (seamless ...

Detailed explanation of MySQL from getting started to giving up - installation

What you will learn 1. Software installation and ...

Solution to MySQL startup successfully but not listening to the port

Problem Description MySQL is started successfully...

10 Underused or Misunderstood HTML Tags

Here are 10 HTML tags that are underused or misun...

Summary of MySQL character sets

Table of contents Character Set Comparison Rules ...

Detailed steps to install mysql5.7.18 on Mac

1. Tools We need two tools now: MySQL server (mys...

Getting started with JavaScript basics

Table of contents 1. Where to write JavaScript 2....

Installation and use of mysql mycat middleware

1. What is mycat A completely open source large d...

Summary of tips for making web pages

Preface This article mainly summarizes some of th...

How to install Mysql5.7 in Centos6

environment Centos 6.6 MySQL 5.7 Install If the s...