Reputation: 39
Is it possible to make an web Java applet that loads a web page? I need to load an web page inside a web page.
An iframe, object and other HTML things I don't need. I need just a Java applet.
Some source code or tutorials?
Upvotes: 0
Views: 349
Reputation: 7344
It is possible. Swing text components support HTML (EditorPanes at Java Tutorials) but if the web page is too complex it might not be displayed correctly.
Upvotes: 1