在java中绘制点

时间:2014-05-07 01:01:42

标签: java swing user-interface 2d

嘿我应该列出城市和x和y坐标列表并绘制它们。我将所有城市都作为顶点使用x和y坐标。现在我试图绘制它们,但我似乎无法看到我做错了什么,我没有得到错误。这是我第一次使用GUI,这可能是一个愚蠢的错误。

 import javax.swing.JTextField;
 import java.awt.*;
 import java.awt.event.*;
 import javax.swing.*;
 import java.awt.geom.*;
 import java.util.Arrays;


 public class GraphMaker{


public GraphMaker(Vertex[] a )
  {
    JFrame frame = new JFrame();
    String start = "Start";
    int columns=20;
    String end = "End";
    JTextField startCity = new JTextField(start,columns);
    JTextField endCity = new JTextField(end,columns);
    JButton button = new JButton("Find Path");
    //button.addActionListener(button);

    int length = a.length;
    Vertex current = a[0];
    CityComponent cityPanel = new CityComponent(current);

    /*for(int i=0; i < length; i++){
        Vertex current = a[i];
        g2.draw(new Line2D.Double(x,y,x,y));
    }*/

    JPanel panel = new JPanel();

    panel.setLayout(new FlowLayout());

    panel.add(startCity);
    panel.add(endCity);
    panel.add(button);

    frame.setLayout(new BorderLayout());
    frame.add(cityPanel,BorderLayout.CENTER);
    frame.add(panel,BorderLayout.SOUTH);

    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.pack();
    frame.setVisible(true);


}

 public void actionPerformed(ActionEvent e) {
        return;
 }
}

import javax.swing.*;
import java.awt.*;

public class CityComponent extends JComponent {

private Vertex m;
private int x = 0;
private int y = 0;

public CityComponent(Vertex m) {
   this.m = m;
}

public void paintComponent(Graphics g) {

    Graphics2D g2 = (Graphics2D)g;
    m.draw(g2);

}

} 


import java.awt.*;
import java.awt.geom.*;
import java.util.*;

public class Vertex{

public String element;
public Double x;
public Double y;


public Vertex(String city, String a, String b){
    this.element = city;
    this.x = Double.parseDouble(a);
    this.y = Double.parseDouble(b);

}

public void draw(Graphics2D g2){



Point2D.Double r1 = new Point2D.Double(x/10, y/10);
Line2D.Double line = new Line2D.Double(r1,r1);

  g2.draw(line);
}
}

1 个答案:

答案 0 :(得分:3)

您正在尝试使用不存在的Graphics对象。在我看来,你有两个选择之一:

  • 您可以使用扩展JPanel的类的paintComponent(Graphics g)方法绘制,使用for循环遍历顶点,并使用JVM提供的Graphics对象进行绘制...
  • 或者您可以使用通过调用BufferedImage上的getGraphics()获得的Graphics对象来绘制BufferedImage。然后,您可以将图像放入ImageIcon,然后将图标放入JLabel。
  • 或者你可以通过在JPanel的paintComponent方法中绘制上面创建的BufferedImage来对上述内容进行组合。
  • 无论您做什么,都不使用通过在Swing组件上调用getGraphics()获得的Graphics对象。你已被警告过了。

修改
我现在看到你的CityComponent类扩展了JComponent,现在看到你应该用这个来绘制。关键是将正确的顶点传递给它,这是我不知道你是否做得正确的事情,因为我们不知道你是如何构建你的GraphMaker的类。

您可能希望告诉我们哪些代码是您的代码,这些代码是给您的,并且还告诉我们您的具体要求。你的一些代码似乎有些偏离。