6

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

FILEJAVA.class.getResource ("FILEHTML.html")。到外部窗体 ()

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

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

4

1 回答 1

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();
    }
}

在某些情况下,身份验证可能需要额外的代码,有关详细信息,请参阅使用 Java 进行身份验证的 HTTP 代理

于 2013-03-28T14:57:46.593 回答