以下示例演示了如何使用Graphics2D類的Line2D對象的draw()方法作為參數來繪制一條線。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
package com.yiibai; import java.awt.*; import java.awt.event.*; import java.awt.geom.Line2D; import javax.swing.JApplet; import javax.swing.JFrame; public class DrawAndDisplayLine extends JApplet { public void init() { setBackground(Color.white); setForeground(Color.white); } public void paint(Graphics g) { Graphics2D g2 = (Graphics2D) g; g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); g2.setPaint(Color.gray); int x = 8 ; int y = 9 ; g2.draw( new Line2D.Double(x, y, 200 , 200 )); g2.drawString( "畫一條線的示例" , x, 250 ); } public static void main(String s[]) { JFrame f = new JFrame( "畫一條線" ); f.addWindowListener( new WindowAdapter() { public void windowClosing(WindowEvent e) { System.exit( 0 ); } }); JApplet applet = new DrawAndDisplayLine(); f.getContentPane().add( "Center" , applet); applet.init(); f.pack(); f.setSize( new Dimension( 300 , 300 )); f.setVisible( true ); } } |
上述代碼示例將產生以下結果。
以上就是Java使用GUI繪制線條的示例的詳細內容,更多關于Java gui的資料請關注服務器之家其它相關文章!
原文鏈接:https://www.yiibai.com/javaexamples/gui_line.html