This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
I created a javaapplet and it's using icons .PNG inside my java directory. I know applet can't access clients' files but my applet must load the icon pictures. So, I am having problem because my applet won't load in a webbrowser. Is there a way to "embed" my icons into my applet?
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35252
7
posted
0
Welcome to JavaRanch.
You could either keep the image files in the same web directory as the applet and access them through URL objects, or bundle them with the class files in a jar file and access them using getResourceAsStream.