Re: [OT] Find properties file in classpath

2005-08-17 Thread GRamani
Hi Ashish, Seems ok except maybe you forgot to set url to ClassLoader.getSystemResource("approval.properties"). Also, googling gave me this link which you may find useful: http://java.sun.com/j2se/1.4.2/docs/guide/resources/resources.html Regards, Geeta Ashish Kulkarni <[EMAIL PROTECTED]> wr

Re: [OT] Find properties file in classpath

2005-08-17 Thread Ashish Kulkarni
Hi is there a problem if i do some thing like below URL url = null; url = this.getClass().getClassLoader().getResource("approvals.properties"); if(url== null) { ClassLoader.getSystemResource("approvals.properties"); } Ashish --- Ashish Kulkarni <[EMAI

[OT] Find properties file in classpath

2005-08-17 Thread Ashish Kulkarni
Hi how do i find all the properties file available in classpath?? Ashish __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com -