我有一个带有JPanel和paintComponent()的类。我也有一个实现Runnable的类,并且计划在线程启动后将图像绘制到paintComponent上。我的构造函数接受JPanel,然后从那里调用getGraphics()。但是,通过测试和搜索,似乎总是返回null。

    System.err.println("Thread Started");
    isRunning = true;
    System.err.println(pap.getGraphics());
    Graphics g = pap.getGraphics();   //pap is the name of the JPanel
    while (isRunning)
    {
        while(xPos <= pap.getWidth() + 1)
        {
            xPos+=horizontalDirection;
            System.err.println(xPos);
            drawImage(upImgs[1], xPos, yPos, g);
            pap.repaint();
            pause();
            //g.drawOval(xPos, 10, 10, 10);
            if(xPos >= pap.getWidth())
                horizontalDirection = -horizontalDirection;
            if(xPos < 1)
                horizontalDirection = 1;
        }
        //pap.repaint();
        //pause(); // let this thread sleep a bit
    }
    System.err.println("Thread Ended");


退货
        线程已启动
        2
        空值
        线程“ Thread-1”中的异常java.lang.nullPointerException

如何从这个单独的类中正确获取paintComponent以便在其上进行绘制?

最佳答案

你不能那样做。 Awt / Swing不是线程安全的,因此只能从gui线程进行绘制。

08-03 17:00