| Author |
error in opening zip file
|
Amirtharaj Chinnaraj
Ranch Hand
Joined: Sep 28, 2006
Posts: 215
|
|
hi guys i tried to load a properties file form classpath using classloader by using the following code import java.net.URI; class prop { public static void main(String as[]) { try{ ClassLoader classLoader = Thread.currentThread().getContextClassLoader(); URI path= (classLoader.getResource("test.properties").toURI()); System.out.println( " path: " + path ); } catch(Exception ex) { System.out.println("erro " +ex) ; } } } but i end up in error like. i have set the classapath properly error: error reading D:\properties\test.properties; error in opening zip file regards amir
|
 |
 |
|
|
subject: error in opening zip file
|
|
|