自动检测代理 - JavaFX - webview

时间:2013-03-22 16:26:01

标签: webview proxy javafx-2 javafx

我的浏览器(webview)以HTML页面开头

FILEJAVA.class.getResource(" FILEHTML.html")。 ToExternalForm()

每当我访问谷歌时,我想知道浏览器是否检查,网络是否有代理(代理' m工作手册)

这样浏览器会显示一个对话框,输入用户名和密码。

1 个答案:

答案 0 :(得分:2)

您可以使用ProxySelector来检查代理。见下一个例子:

public class DetectProxy extends Application {

    private Pane root;

    @Override
    public void start(final Stage stage) throws URISyntaxException {
        root = new VBox();

        List<Proxy> proxies = ProxySelector.getDefault().select(new URI("http://google.com"));
        final Proxy proxy = proxies.get(0); // ignoring multiple proxies to simplify code snippet
        if (proxy.type() != Proxy.Type.DIRECT) {
            // you can change that to dialog using separate Stage
            final TextField login = new TextField("login");
            final PasswordField pwd = new PasswordField();
            Button btn = new Button("Submit");
            btn.setOnAction(new EventHandler<ActionEvent>() {
                @Override
                public void handle(ActionEvent t) {
                    System.setProperty("http.proxyUser", login.getText());
                    System.setProperty("http.proxyPassword", pwd.getText());
                    showWebView();
                }
            });
            root.getChildren().addAll(login, pwd, btn);
        } else {
            showWebView();
        }

        stage.setScene(new Scene(root, 600, 600));
        stage.show();
    }

    private void showWebView() {
        root.getChildren().clear();
        WebView webView = new WebView();

        final WebEngine webEngine = webView.getEngine();
        root.getChildren().addAll(webView);
        webEngine.load("http://google.com");

    }

    public static void main(String[] args) {
        launch();
    }
}
在某些情况下,

身份验证可能需要额外的代码,有关详细信息,请参阅Authenticated HTTP proxy with Java