Best viewed in 1024 X 800 resolution... Leave a comment if u like an article...
Google
 
Web tezcols.blogspot.com

Monday, August 28, 2006

Load an img frm jar file...

If u hav ur class files and image files in a jar file then u can access the images using ClassLoader. ClassLoader loads the specified resource in the jar file.

// Get current classloader
ClassLoader cl = this.getClass().getClassLoader();
// Create icons
Icon firstIcon = new ImageIcon(cl.getResource("images/one.gif"));
Icon secondIcon = new ImageIcon(cl.getResource("images/two.gif"));

tezcols

0 Comments:

Post a Comment

<< Home