Java Webcam GUI应用程序

时间:2012-02-09 16:08:32

标签: java swing user-interface webcam jmf

我希望有人能够帮助我解决我正在开发的一个应用程序的问题,该应用程序正在使用带有JMF媒体库的java中的网络摄像头。

我遇到的问题是我可以在应用程序中使用此类运行网络摄像头确定

import java.awt.BorderLayout;
import java.util.Vector;

import javax.media.CaptureDeviceInfo;
import javax.media.CaptureDeviceManager;
import javax.media.Manager;
import javax.media.MediaLocator;
import javax.media.Player;
import javax.media.control.FormatControl;
import javax.swing.JFrame;
import javax.swing.JButton;

public class WebcamClass{

CaptureDeviceInfo cam;
MediaLocator locator;
Player player;
FormatControl formatControl;
public WebcamClass(){

    try{
                    // List out available Devices to Capture Video.
        Vector<CaptureDeviceInfo> list = CaptureDeviceManager.getDeviceList ( null );
                    System.out.println(list);
        // Iterating list
        for(CaptureDeviceInfo temp : list){
            // Checking whether the current device supports VfW
            // VfW = Video for Windows
                        if(temp.getName().startsWith("vfw:"))
                        {
            System.out.println("Found : "+temp.getName().substring(4));
            // Selecting the very first device that supports VfW
            cam = temp;
            System.out.println("Selected : "+cam.getName().substring(4));
            break;
                        }
        }

        System.out.println("Put it on work!...");
        // Getting the MediaLocator for Selected device.
        // MediaLocator describes the location of media content
        locator = cam.getLocator();

        if(locator != null){

            // Create a Player for Media Located by MediaLocator
            player = Manager.createRealizedPlayer(locator);

            if(player != null){

                // Starting the player
                player.start();

                // Creating a Frame to display Video
                                    JFrame f = new JFrame();
                f.setTitle("Test Webcam");

                f.setLayout(new BorderLayout());
                // Adding the Visual Component to display Video captured by Player
                // from URL provided by MediaLocator
                f.add(player.getVisualComponent(), BorderLayout.CENTER);
                f.pack();
                f.setVisible(true);
            }

        }

    }catch(Exception e){
        System.out.println(e);
    }
}

}

然而,当我把它放到我想运行它的GUI应用程序中时,我继续得到“线程中的异常”AWT-EventQueue-0“java.lang.NullPointerException”当我按下按钮打开相机

我知道它没有拿起网络摄像头设备,但我无法理解为什么当我不想将它嵌入我的GUI时。

我的库文件夹中也有JMF.jar。

非常感谢任何帮助。

2 个答案:

答案 0 :(得分:1)

如果您的NullPointerException没有更多信息,则无法说出造成问题的原因。在异常的堆栈跟踪中,您应该在您编写的代码中标识触发异常的行。 没有任何更多信息,我的猜测是您没有ActionListener注册到应启动相机的JButton

答案 1 :(得分:0)

cam.getLocator();正在抛出异常。您的列表中没有填充任何设备。