Java Swing Tutorials - Herong's Tutorial Examples - v4.31, by Herong Yang
Drawing Chinese Characters on Frames
This section provides a tutorial example on how to draw Chinese characters on frame using the drawString() method with a Chinese font selected.
Problem: I want to draw some Chinese characters in a frame.
Solution: You can do in the same way as described in the solution of the previous question. In the paint() method, first change the font of the Graphics object to a Unicode font that supports Chinese characters. Then use drawString() utility method to draw the string with Chinese characters. The following sample code, JFramePaintChinese.java, shows you how to do this.
/* JFramePaintChinese.java * Copyright (c) 2014-2018 HerongYang.com All Rights Reserved. */ import java.awt.*; import javax.swing.*; public class JFramePaintChinese { public static void main(String[] a) { JFrame f = new JFrame(); f.setTitle("Drawing Graphics in Frames"); f.setBounds(100,50,500,300); f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); f.setContentPane(new MyComponent()); f.setVisible(true); } static class MyComponent extends JComponent { public void paint(Graphics g) { g.setFont(new Font("SimSun",Font.PLAIN, 12)); g.drawString("Hello world! - \u7535\u8111\u4F60\u597D\uFF01", 100,50); } } }
If you run this example, you will get:
Table of Contents
Introduction of Java Swing Package
Graphics Environment of the Local System
Creating Frames with Sizes and Locations
Closing Frame and Terminating Application
Listing and Interrupting AWT Threads
"AWT blocker activation interrupted" Error in JDK 1.6
JFrame Thread Behavior with JDK 8 to 12
Displaying Chinese Characters in Frame Title
Drawing Graphics - Using paint() on Frame
Drawing Graphics - Using paint() on Component
Drawing Graphics - Using paint() on Content Pane
►Drawing Chinese Characters on Frames
JCheckBox - Swing Check Box Class
JRadioButton - Swing Radio Button Class
JTextField - Swing Text Field Class
JComboBox - Swing Combo Box Class
Menu Bar, Menus, Menu Items and Listeners
Creating Internal Frames inside the Main Frame
Layout of Components in a Container
JEditorPane - The Editor Pane Class
SwingWorker - The Background Task Worker
AWT (Abstract Windows Toolkit)