• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How to open an HTML file from an applet both of which are inside a JAR file?

 
Ranch Hand
Posts: 89
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
This question has been asked many times on this site and at some other java resource sites.
Taking help from the replies posted, I have used the getResource() method of the ClassLoader class.
The HTML file is "abc.html"
The url obtained is "loaderresource://Z/CRWSbHlp.html" which the browser cannot display!! The standard error "The page canot be displayed" screen was displayed.
My code is as follows :


Another method I tried out was with the following code:



Both the outputs of the url in the java console as well as in the url window is :
loaderresource://Z/abc.html

I have tested the code both from a local pc as well as a webserver.
in the case of the web server, the url in the url window is blank, though the url obtained in the java console is the same as above.
I would appreciate if anyone could point out any mistake in my code or offer an alternative.
Thanks,
Shashi
p.s.: sorry for posting this topic in more than one forum, but I needed a solution by all means!!
 
reply
    Bookmark Topic Watch Topic
  • New Topic