できるだけ簡単に:
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
)。
どうしたの ?