| Author |
get the environment var in the servlet
|
zb cong
Ranch Hand
Joined: Jan 14, 2002
Posts: 403
|
|
hello in my servlet,there is following code block: File f=new File("%JAVA_HOME%\\test.txt"); f.createNewFile(); the "JAVA_HOME" is the environment variable of my windows.after i deploy it to jboss,it threw exception.that tell me can't find the path. then i modify it as: File f=new File("%JBOSS_HOME%\\test.txt"); f.createNewFile(); the "JBOSS_HOME" is definde in its "run.bat " file. the code still don't work. who can tell me : 1 how can i use the environment variable of os or app server? 2 how and where can i set up a envrionment variable as the base dir ? thank you.
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56163
|
|
|
There's no supported way to get the value of environment variables in Java. You'd be better off setting up a context-level init param in your web.xml for these types of config variables.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
zb cong
Ranch Hand
Joined: Jan 14, 2002
Posts: 403
|
|
|
thanks
|
 |
 |
|
|
subject: get the environment var in the servlet
|
|
|