aspose file tools
The moose likes Beginning Java and the fly likes system variables in .properties file Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "system variables in .properties file" Watch "system variables in .properties file" New topic
Author

system variables in .properties file

seetharaman jayaraman
Ranch Hand

Joined: Feb 18, 2008
Posts: 42
Hi,
How can use (access) the system variable's (like path,userprofile, windir, etc)values in my project's .properties file. I want to locate all my project related directories relative to these variables in my project's properties file.
Balasubramanian Chandrasekaran
Ranch Hand

Joined: Nov 28, 2007
Posts: 215

Hi seetharaman,

You can checkout this link.

It will give you all the information
seetharaman jayaraman
Ranch Hand

Joined: Feb 18, 2008
Posts: 42
Hi Balasubramanian Chandrasekaran:
already i worked with all these. what i want is:
- i will store my .properties file in user.home
- this above .properties file should have entries to refer system variable's values like:
videofolder=%user.home%\video\;
audiofolder=%user.dir%\audio\;
- ie from my own .properties file i want to access/refer system variables
- How can i do this, syntax, sample, please!!

Thanks for your fast reply
seetharaman jayaraman
Ranch Hand

Joined: Feb 18, 2008
Posts: 42
hi all,
Inside a .properties file, accessing any location relatively like audio_dir=%userprofile%\audio, video_dir=%user.dir%\video,etc does not work.

But, inside the .properties file, we can specify like audio_dir=dir1\audio, video_dir=dir1\video, etc instead of using absolute (complete) path.
Automatically OS will check for these folders in Current Working Directory (CWD)

i.e. audio_dir=dir1\audio is equal to audio_dir=<CWD>\dir1\audio
[ June 17, 2008: Message edited by: seetharaman jayaraman ]
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: system variables in .properties file
 
Similar Threads
below code work in command line. but it doesn't work in eclipse.
Setting up Java
Eclipse classpath question
HttpServletResponse obj lost after using System.getProperty
Setting up Paths Permanently