以下示例演示了如何使用Graphics2D類(lèi)的Line2D對(duì)象的draw()方法作為參數(shù)來(lái)繪制一條線。
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( "畫(huà)一條線的示例" , x, 250 ); } public static void main(String s[]) { JFrame f = new JFrame( "畫(huà)一條線" ); 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 ); } } |
上述代碼示例將產(chǎn)生以下結(jié)果。
以上就是Java使用GUI繪制線條的示例的詳細(xì)內(nèi)容,更多關(guān)于Java gui的資料請(qǐng)關(guān)注服務(wù)器之家其它相關(guān)文章!
原文鏈接:https://www.yiibai.com/javaexamples/gui_line.html