A
Alex Kl
Moin moin,
ich habe das Problem, das ich im JEditorPane keine https Seiten aufrufen kann. Die Verbindung wird nicht hergestellt.
Was muss ich ergänzen, um auf https seiten zugreifen zu können?
import java.net.URL;
import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
public class Website {
public static void main(String[] a) throws Exception {
JFrame frame = new JFrame("test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JEditorPane editorPane = new JEditorPane();
System.setProperty("proxySet", "true");
System.setProperty("http.proxyHost", "Adresse");
System.setProperty("http.proxyPort", "Portname");
editorPane.setPage(new URL("https://XXXX"));
frame.add(new JScrollPane(editorPane));
frame.setSize(300, 200);
frame.setVisible(true);
}
}
Ich freue mich drauf, wieder etwas dazulernen zu können
Gruß und vielen Dank im vorraus,
Alex
ich habe das Problem, das ich im JEditorPane keine https Seiten aufrufen kann. Die Verbindung wird nicht hergestellt.
Was muss ich ergänzen, um auf https seiten zugreifen zu können?
import java.net.URL;
import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
public class Website {
public static void main(String[] a) throws Exception {
JFrame frame = new JFrame("test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JEditorPane editorPane = new JEditorPane();
System.setProperty("proxySet", "true");
System.setProperty("http.proxyHost", "Adresse");
System.setProperty("http.proxyPort", "Portname");
editorPane.setPage(new URL("https://XXXX"));
frame.add(new JScrollPane(editorPane));
frame.setSize(300, 200);
frame.setVisible(true);
}
}
Ich freue mich drauf, wieder etwas dazulernen zu können
Gruß und vielen Dank im vorraus,
Alex