I
Ike
I have an html page, locally, which I can have appear in a JEditorPane:
JEditorPane helpPane;
helpPane.setPage(new File("myfile.html").toURL());
Which works fine, until I package everything up into a jar file. How can I
amend the second line of code, above, to operate if my html page,
"myfile.html", is in the jar? Thanks, Ike
JEditorPane helpPane;
helpPane.setPage(new File("myfile.html").toURL());
Which works fine, until I package everything up into a jar file. How can I
amend the second line of code, above, to operate if my html page,
"myfile.html", is in the jar? Thanks, Ike