|
|
How to read properties file available in my local disk
Hi,
I am unable to read .properties file that is available in C:\ directory in my system through spring. Can any one tell how to read the file available in any where of the system. It's is very ugent requirement for me.
Cheers,
Sumanth
It's basically a raw config file - have you tried using notepad?
Yes I have created the file by using notepad only.
Originally Posted by sumanthYes I have created the file by using notepad only.
I think I misunderstood your question.
If you want to read the contents of the properties file you need to have something like this in build.xml
lt;property file=quot;build.propertiesquot;/gt; |
|