我有一个使用网络摄像头的网络应用程序。当我在浏览器上运行它时,它可以工作,当然它会询问我是否允许使用网络摄像头。那么javafx中有没有办法要求相机?这是我的代码:
import java.io.IOException;
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.StackPane;
import javafx.scene.web.WebEngine;
import javafx.scene.web.WebView;
import javafx.stage.Stage;
public class Test extends Application {
@Override
public void start(Stage stage) throws Exception {
StackPane root = new StackPane();
WebView view = new WebView();
WebEngine engine = view.getEngine();
engine.load("http://localhost/Step2.html");
root.getChildren().add(view);
System.out.println(engine.isJavaScriptEnabled());
Scene scene = new Scene(root, 800, 600);
stage.setScene(scene);
stage.show();
}
public static void main(String[] args) throws IOException {
Application.launch(args);
}
}
提前致谢!!