Posted By:
Tim_Rohaly
Posted On:
Thursday, April 19, 2001 04:36 PM
Assuming the .html file is called "helpfile.html" and
is bundled in the same jar as your
program, simply use either:
URL url = getClass().getResource("helpfile.html");
or
InputStream is = getClass().getResourceAsStream("helpfile.html");
then process as appropriate.