SwingBox, HTML- .
, BrowserPane JEditorPane, ( -).
The only problem I ran into was the unwanted scrollbars from the package JScrollPane. The demo application seems to have the same problem. I canβt say where this problem came from. I am using version 1.0.
Here's a snippet of code to show how easy it is to use the component:
BrowserPane browserPane = new BrowserPane();
JScrollPane scrollPane = new JScrollPane(browserPane);
someContainer.add(scrollPane);
browserPane.setText("<html><b>Some HTML here</b></html>");
browserPane.setPage(new URL("http://en.wikipedia.org"));
source
share