3

我找到了一个源代码并将其添加到我的框架中,只是为了测试它使用 Java2D。但它是一个例外。我不明白为什么。

我的课:

package ClientGUI;




import java.awt.Dimension;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.MediaTracker;
import java.awt.RenderingHints;
import java.awt.geom.CubicCurve2D;
import java.awt.geom.PathIterator;
import java.awt.geom.Point2D;
import java.awt.image.BufferedImage;

/**
 *
 * @author ICC
 */

public class SignInFrame extends javax.swing.JFrame implements Runnable {

private static int iw,  ih,  iw2,  ih2;
private static Image img;
private static final int FORWARD = 0;
private static final int BACK = 1;

// the points of the curve
private Point2D pts[];

// initializes direction of movement forward, or left-to-right
private int direction = FORWARD;
private int pNum;
private int x,  y;
private Thread thread;
private BufferedImage bimg;

/** Creates new form SignInFrame */
public SignInFrame() {
    initComponents();
    img = getToolkit().getImage(Image.class.getResource("Yahoo-Messanger.jpg"));
    try {
        MediaTracker tracker = new MediaTracker(this);
        tracker.addImage(img, 0);
        tracker.waitForID(0);
    } catch (Exception e) {
    }
    iw = img.getWidth(this);
    ih = img.getHeight(this);
    iw2 = iw / 2;
    ih2 = ih / 2;

}

public void reset(int w, int h) {
    pNum = 0;
    direction = FORWARD;

    // initializes the cubic curve
    CubicCurve2D cc = new CubicCurve2D.Float(
            w * .2f, h * .5f, w * .4f, 0, w * .6f, h, w * .8f, h * .5f);

    // creates an iterator to define the boundary of the flattened curve
    PathIterator pi = cc.getPathIterator(null, 0.1);
    Point2D tmp[] = new Point2D[200];
    int i = 0;

    // while pi is iterating the curve, adds points to tmp array
    while (!pi.isDone()) {
        float[] coords = new float[6];
        switch (pi.currentSegment(coords)) {
            case PathIterator.SEG_MOVETO:
            case PathIterator.SEG_LINETO:
                tmp[i] = new Point2D.Float(coords[0], coords[1]);
        }
        i++;
        pi.next();
    }
    pts = new Point2D[i];

    // copies points from tmp to pts
    System.arraycopy(tmp, 0, pts, 0, i);
}

public void step(int w, int h) {
    if (pts == null) {
        return;
    }
    x = (int) pts[pNum].getX();
    y = (int) pts[pNum].getY();
    if (direction == FORWARD) {
        if (++pNum == pts.length) {
            direction = BACK;
        }
    }
    if (direction == BACK) {
        if (--pNum == 0) {
            direction = FORWARD;
        }
    }
}

public void drawDemo(int w, int h, Graphics2D g2) {
    g2.drawImage(img,
            0, 0, x, y,
            0, 0, iw2, ih2,
            this);
    g2.drawImage(img,
            x, 0, w, y,
            iw2, 0, iw, ih2,
            this);
    g2.drawImage(img,
            0, y, x, h,
            0, ih2, iw2, ih,
            this);
    g2.drawImage(img,
            x, y, w, h,
            iw2, ih2, iw, ih,
            this);
}

public Graphics2D createGraphics2D(int w, int h) {
    Graphics2D g2 = null;
    if (bimg == null || bimg.getWidth() != w || bimg.getHeight() != h) {
        bimg = (BufferedImage) createImage(w, h);
        reset(w, h);
    }
    g2 = bimg.createGraphics();
    g2.setBackground(getBackground());
    g2.clearRect(0, 0, w, h);
    g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
            RenderingHints.VALUE_ANTIALIAS_ON);
    g2.setRenderingHint(RenderingHints.KEY_RENDERING,
            RenderingHints.VALUE_RENDER_QUALITY);
    return g2;
}

@Override
public void paint(Graphics g) {
    Dimension d = getSize();
    step(d.width, d.height);
    Graphics2D g2 = createGraphics2D(d.width, d.height);
    drawDemo(d.width, d.height, g2);
    g2.dispose();
    g.drawImage(bimg, 0, 0, this);
}

public void start() {
    thread = new Thread(this);
    thread.setPriority(Thread.MIN_PRIORITY);
    thread.start();
}

public synchronized void stop() {
    thread = null;
}

public static void main(String argv[]) {

    SignInFrame f = new SignInFrame();





    f.start();
}

public void run() {

    Thread me = Thread.currentThread();
    while (thread == me) {
        repaint();
        try {
            Thread.sleep(10);
        } catch (InterruptedException e) {
            break;
        }
    }
    thread = null;
}}

例外:

  在里面:
  deps-jar:
  将 1 个源文件编译到 C:\Users\ICC\Documents\NetBeansProjects\YahooServer\build\classes
  编译单:
  单跑:
  获取图像时未捕获的错误:
  java.lang.NullPointerException
          在 sun.awt.image.URLImageSource.getConnection(URLImageSource.java:97)
          在 sun.awt.image.URLImageSource.getDecoder(URLImageSource.java:107)
          在 sun.awt.image.InputStreamImageSource.doFetch(InputStreamImageSource.java:240)
          在 sun.awt.image.ImageFetcher.fetchloop(ImageFetcher.java:172)
          在 sun.awt.image.ImageFetcher.run(ImageFetcher.java:136)
4

6 回答 6

4

有问题的行在这里 img = getToolkit().getImage(Image.class.getResource("Yahoo-Messanger.jpg")); 确保文件存在 请参阅此文档以查看有关如何加载资源的顺序 Java Doc for getResource

于 2010-01-07T14:50:57.470 回答
2
java.lang.NullPointerException
    at sun.awt.image.URLImageSource.getConnection(URLImageSource.java:97)

我做了一个疯狂的猜测:URL 为空。您需要调试在您自己的代码第一次出现在堆栈跟踪中时使用的变量。我已经在您之前的一个主题中解释了如何调试。

于 2010-01-07T14:55:23.000 回答
1

使用您的调试器并定义一个断点,以便您的应用程序在抛出 NPE 时停止。然后,您会找到导致问题的空引用的代码行。(或在堆栈跟踪上打印的代码行上设置断点)

如果不查看引发异常的代码部分,几乎不可能提供更详细的帮助。

编辑

这次简单的错字?图像文件是否被调用Yahoo-Messanger.jpg或不应该被调用Yahoo-Messenger.jpg?可能是找不到图片。不幸的是,您的堆栈跟踪片段不包括您的课程中出现问题的代码行。

于 2010-01-07T14:48:32.857 回答
1

我发现解决这些问题的最好方法是一步一步来。异常指出获取图像时出错。在SignInFrame()您尝试检索图像时img = getToolkit().getImage(Image.class.getResource("Yahoo-Messanger.jpg"));

确保您正确指向图像。查看getResource的 javadoc 也可能会有所帮助。

另外,我认为(而且我不是专家)将可能引发异常的方法放在 try-catch 中通常是一个好主意。这样您就可以准确地知道抛出异常时错误发生的位置。

于 2010-01-07T14:54:37.540 回答
0

我认为当您调用 f.start() 时,它实际上会调用 run() 方法而不是您自己的 start() 方法,因为该类实现了 Runnable。

于 2010-01-07T14:58:39.513 回答
0

问题已经得到解答,但我建议在这一行进行两项额外的更改:

    img = getToolkit().getImage(Image.class.getResource("Yahoo-Messanger.jpg"));

1 - 检查返回的 URL,null如果没有找到图像。

2 - 我认为这Image.class是误导。使用getClass()因为没有(明显的)理由使用 Image 类的 Classloader。

    URL url = getClass().getResource("Yahoo-Messanger.jpg");
    if (url == null) {
        // some error handling here: throw an Exception, logging, ...
    }
    img = getToolkit().getImage(url);

抛出异常将是最好的解决方案恕我直言。

于 2010-01-07T16:06:52.713 回答