将图片绘制到jframe时,我遇到null异常错误。 我调试代码并检查图像和帧不是空但仍然在绘制图像到帧时抛出NULL异常。
请看一下:
public void run(){
try{
ObjectInputStream objVideoIn = new ObjectInputStream(serVideoIn);
byte[] imgbytes=null;
ByteArrayInputStream barrin=null;
JFrame jf = new JFrame();
Graphics ga=jf.getGraphics(); //Getting null exception
//Thread.sleep(10000);
jf.setVisible(true);
jf.setSize(400, 400);
while(true){
int index=0;
//Thread.sleep(300);
int size= (int)objVideoIn.readObject();
imgbytes = new byte[size];
barrin = new ByteArrayInputStream(imgbytes);
System.out.println("image size" + size);
//Thread.sleep(200);
while(index<size)
{
System.out.println("reading image");
int bytesread = objVideoIn.read(imgbytes, index, size-index);
if(bytesread<0){
System.out.println("error in receiving bytes yar");
}
index+=bytesread;
}
//barrin.read(imgbytes, 0, imgbytes.length);
barrin = new ByteArrayInputStream(imgbytes);
buffImg = ImageIO.read(barrin);
if(buffImg==null)
{
System.out.println("null received");
}
else {
System.out.println("image received");
**ga.drawImage(buffImg, 0, 0, null);**
}
}
}
}
catch(Exception ex)
{
System.out.println("error reading video" +ex.getMessage());
}
}
答案 0 :(得分:5)
NPE很可能来自这里:
Graphics ga=jf.getGraphics();
根据docs:
为此组件创建图形上下文。这个方法会返回 如果此组件当前不可显示,则返回null。
1)不要使用Component#getGraphics
作为其糟糕的实践/不持久,并且将返回null
,除非组件可见。
2)而是使用JPanel
并覆盖paintComponent(Graphics g)
,不要忘记在覆盖super.paintComponent(g);
中调用paintComponent
作为第一次调用。
3)覆盖getPreferredSize()
并返回正确的Dimension
以适合正在绘制的图像。
4)将JPanel
添加到框架中,以使图像可见。
或者您也可以使用JLabel
,只需setIcon(..)
次调用即可添加JFrame
。
以下是我的一些例子:
使用JPanel
:
使用JLabel
: