2016-04-21 165 views
0

因此对于我的项目,我必须使用JLabelImageIcon将图形绘制到屏幕上。我已经做了一些研究,但我似乎无法让它向窗口渲染任何东西。它应该呈现每个20个不同位置的鸟,但屏幕保持空白。这里是类文件:JLabel在屏幕上不显示图像

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

class Graphics 
{ 
    public static final String SIMULATOR_NAME = "Flocking Simulator 2K16"; 
    public static final int MAXIMUM_WIDTH = 1280; 
    public static final int MAXIMUM_HEIGHT = 780; 

    static Canvas canvas = new Canvas(); 

    private JFrame frame = new JFrame(); 

    public Graphics() 
    { 
     JFrame frame = new JFrame(); 
     frame.setTitle(SIMULATOR_NAME); 
     frame.setSize(MAXIMUM_WIDTH, MAXIMUM_HEIGHT); 
     frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 
     frame.setVisible(true); 
     frame.add(canvas); 
    } 

    public void Clear() 
    { 
     canvas.clear(); 
    } 

    public void DrawBirds(Flock birds, String graphic) 
    { 
     for (int i = 0; i < birds.GetMaximumBirds(); i++) 
     { 
      System.out.printf("Bird#" + i + "\n"); 
      Bird b = birds.GetBird(i); 
      frame.add(BirdGraphic(b, graphic)); 
     } 
    } 

    public JLabel BirdGraphic(Bird bird, String graphic) 
    { 
     System.out.printf(System.getProperty("user.dir") + File.separator + graphic + "\n"); 
     ImageIcon birdImage = new ImageIcon(System.getProperty("user.dir") + File.separator + graphic); 
     JLabel birdLabel = new JLabel(birdImage); 
     CartesianCoordinate loc = bird.GetPosition(); 
     birdLabel.setLocation((int)Math.floor(loc.getX() + 0.5), (int)Math.floor(loc.getY() + 0.5)); 
     return birdLabel; 
    } 
} 
+0

检查'new File(System.getProperty(“user.dir”)+ File.separator + graphic).exists()'返回'true'。 – Berger

+0

刚刚检查过它返回'true' – dave

+0

框架如何调用?除了'frame.add(canvas);'我没有看到任何东西被添加到它。另请提供启动您的应用程序的主要方法。 – Berger

回答

0

您不能直接在框架中添加标签。您必须将它们添加到必须在框架中的某个面板。我们也不知道你真的想做什么,你的Canvas的目的是什么? 也不要混用awt和swing,我的意思是不要用Canvas,比较喜欢JComponent

+0

感谢您的回应!我现在尝试自己做这件事,但似乎无法让它工作,请注意举例说明如何将标签添加到面板,然后将其转换到框架上?我很抱歉在这一点上迷失了方向。 – dave

+0

您没有给我们足够的信息:您希望您的标签出现在哪里?你的画布是什么?更多代码... –