1

できるだけ簡単に:

public class WebViewSample extends Application {

    public static void main(String[] args) {
            // I tried without this proxy configuration, same result.
        System.getProperties().put("proxySet", "true");
        System.getProperties().put("proxyHost", "http://127.0.0.1");
        System.getProperties().put("proxyPort", 5677);
        launch(args);
    }

    @Override
    public void start(final Stage primaryStage) {
        final WebView webView = new WebView();
        webView.getEngine().load("http://docs.oracle.com/javafx/");
        primaryStage.setScene(new Scene(webView));
        primaryStage.show();
    }
}

cntlmプロキシ認証を処理するために使用しています。(私は走っていますjdk8u5)。

どうしたの ?

4

1 に答える 1

0

構成httpsすると問題が解決します。

System.setProperty("https.proxyHost", "127.0.0.1");
System.setProperty("https.proxyPort", "5677");
于 2014-06-01T21:40:08.230 に答える