导出为JAR时,不支持major.minor版本51.0与JMF和Eclipse

时间:2012-06-01 19:32:39

标签: eclipse jar nullpointerexception jmf

我正在编写一个简短的程序,使用Java Media Framework(JMF)从网络摄像头中提取图像。

似乎我遇到了许多人面前的问题,但是没有明确制定的解决方案。我正在使用eclipse,我的程序运行正常。我已将jmf.jar添加为外部库。

现在,问题是如果我将程序导出为jar,在命令行上运行时会出现以下错误:

Exception in thread "main" java.lang.NullPointerException
    at recorder.SimpleRecorder.<init>(SimpleRecorder.java:46)
    at recorder.SimpleRecorder.main(SimpleRecorder.java:67)

第46行是ml = di.getLocator();。 (我已经包含了下面的代码。)

当我没有将jmf.jar添加为外部库并尝试在eclipse中运行该程序时,这是我得到的相同错误。

互联网上的一些资源,比如这个

https://forums.oracle.com/forums/thread.jspa?threadID=1277297

建议文件jmf.properties是问题的根源。因此,我尝试了以上资源建议的几个方面:

  • 将jmf.properties文件的路径添加到jar的清单中。之后,清单看起来像:

    清单 - 版本:1.0

    Class-Path :. “C:\ Program Files(x86)\ JMF2.1.1e \ lib \ jmf.properties”

    Main-Class:recorder.SimpleRecorder

    我不确定这是否是向清单添加路径的正确方法。

  • 我还尝试从文件夹C:\ Program Files(x86)\ Java \ jre7 \ lib中删除jmf.jar,因为它在eclipse中似乎会导致问题,因为它是jmf可用的两次(保留它并且不将jmf.jar作为外部库添加导致上述错误)。

  • 将jmf.properties添加到jar文件所在的文件夹会产生不同的错误:

    线程“VFW请求线程”中的异常java.lang.UnsatisfiedLinkError:JMFSecurityManager:java.lang.UnsatisfiedLinkError:java.library.path中没有jmvfw     at com.sun.media.JMFSecurityManager.loadLibrary(JMFSecurityManager.java:206)     在com.sun.media.protocol.vfw.VFWCapture。(VFWCapture.java:19)     at com.sun.media.protocol.vfw.VFWSourceStream.doConnect(VFWSourceStream.java:241)     at com.sun.media.protocol.vfw.VFWSourceStream.run(VFWSourceStream.java:763)     在java.lang.Thread.run(未知来源)

  • 将jmf.properties文件复制到任何其他位置,包括jar内部(如上述资源中所示)都没有任何效果。

我希望有人知道如何解决这个问题 - 我非常乐意提供更多信息。

谢谢,

纳斯

package recorder;

import java.awt.BorderLayout;
import java.awt.Component;
import java.awt.Graphics2D;
import java.awt.Image;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.FileOutputStream;

import javax.media.Buffer;
import javax.media.CaptureDeviceInfo;
import javax.media.CaptureDeviceManager;
import javax.media.Manager;
import javax.media.MediaLocator;
import javax.media.Player;
import javax.media.control.FrameGrabbingControl;
import javax.media.format.VideoFormat;
import javax.media.util.BufferToImage;
import javax.swing.JFrame;

import com.sun.image.codec.jpeg.JPEGCodec;
import com.sun.image.codec.jpeg.JPEGEncodeParam;
import com.sun.image.codec.jpeg.JPEGImageEncoder;

public class SimpleRecorder extends JFrame{

public static Player player = null;
public CaptureDeviceInfo di = null;
public MediaLocator ml = null;
public Buffer buf = null;
public Image img = null;
public VideoFormat vf = null;
public BufferToImage btoi = null;

public SimpleRecorder(String title) {
    super(title);

    String str2 = "vfw:Microsoft WDM Image Capture (Win32):0";
    di = CaptureDeviceManager.getDevice(str2);

    if(di == null) System.out.println("di is null.");

    ml = di.getLocator();

    try 
    {
      player = Manager.createRealizedPlayer(ml);
      player.start();
      Component comp;

      if ((comp = player.getVisualComponent()) != null)
      {
        add(comp,BorderLayout.CENTER);
      }

    } 
    catch (Exception e) 
    {
      e.printStackTrace();
    }
}

public static void main(String[] args){
    SimpleRecorder frame = new SimpleRecorder("Simple Recorder");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.pack();
    frame.setSize(335,275);
    frame.setLayout(new BorderLayout());
    frame.setVisible(true);

    frame.addWindowListener(new WindowAdapter() {
          public void windowClosing(WindowEvent e) {
          playerclose();
          System.exit(0);}});

    System.out.println("Waiting for camera to get ready...");

    try {
        Thread.sleep(5000);
    } catch (InterruptedException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
    }

    System.out.println("Start recording...");
    while(true){

        frame.recordImage();

        try {
            Thread.sleep(350);
        } catch (InterruptedException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        }
    }   
}

private void recordImage(){

     // Grab a frame
      FrameGrabbingControl fgc = (FrameGrabbingControl)
      player.getControl("javax.media.control.FrameGrabbingControl");
      buf = fgc.grabFrame();

      // Convert it to an image
      btoi = new BufferToImage((VideoFormat)buf.getFormat());
      img = btoi.createImage(buf);

      // Get current directory
      String currentDir = new File("./Extracted_Image.jpg").getAbsolutePath();

      // save image
      saveJPG(img,currentDir);
}

public static void saveJPG(Image img, String s)
  {
    BufferedImage bi = new BufferedImage(img.getWidth(null), img.getHeight(null), BufferedImage.TYPE_INT_RGB);
    Graphics2D g2 = bi.createGraphics();
    g2.drawImage(img, null, null);

    FileOutputStream out = null;
    try
    { 
      out = new FileOutputStream(s); 
    }
    catch (java.io.FileNotFoundException io)
    { 
        System.out.println("File Not Found"); 
    }

    if(out == null) System.out.println("Could not create file output stream.");

    JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
    JPEGEncodeParam param = encoder.getDefaultJPEGEncodeParam(bi);
    param.setQuality(0.5f,false);
    encoder.setJPEGEncodeParam(param);

    try 
    { 
      encoder.encode(bi); 
      out.close(); 
    }
    catch (java.io.IOException io) 
    {
      System.out.println("IOException"); 
    }
  }

public static void playerclose() 
  {
    player.close();
    player.deallocate();
  }

}

1 个答案:

答案 0 :(得分:0)

要检查的一件事是你的eclipse.ini。我发现工作区安装的问题与eclipse.ini指定的vm不一致。如果ini使用1.6并且工作空间使用1.7,那么一些eclipse插件可能会尝试使用1.6工具处理1.7字节码或源,从而导致各种问题

  • 编辑\ eclipse.ini
  • 检查vm设置为预期版本

    -vm C:/java/jdk1.7.0_05/jre/bin/server/jvm.dll