The Chinese in the java application deployed under Linux will become "口" characters one by one, that is, garbled characters
Problem analysis:
The following implementation method is used in the code:
new java.awt.Font("宋体", Font.PLAIN, 12) Then the font "宋体" must be needed in jdk ($JAVA_HOME/jre/ lib/fonts directory)
Since JDK does not have Chinese fonts by default, it will be displayed as garbled characters
It needs to be set manually so that the java application can find the required Chinese fonts
Solution:
Upload the required font files to the $JAVA_HOME/jre/lib/fonts directory and restart tomcat (the required fonts can be found under the window system, with window 7 as the Example: fonts are saved in the C:\Windows\Fonts path)
For more java knowledge, please pay attention to the java basic tutorial column.
The above is the detailed content of How to solve java Chinese garbled characters in linux environment. For more information, please follow other related articles on the PHP Chinese website!