Tagged Questions
The system-variable tag has no wiki summary.
3
votes
2answers
124 views
Is there any syntax like : #{systemProperties['environment_variable_name']} to get the system variable?
Does using #{systemProperties['environment']} in the applicationcontext.xml file of Spring return the value associated with environment?
Or is there any way to ge the system variable value in the ...
2
votes
2answers
551 views
How to create a folder in the home directory?
I want to create a directory path = "$HOME/somedir".
I've tried using boost::filesystem::create_directory(path), but it fails - apparently the function doesn't expand system variables.
How can I ...
2
votes
1answer
540 views
Script to Change JAVA_HOME System Variable in Windows
I do most of my work against JDK 1.5 - but occasionally I have to change to 1.6. it is a bit painful to have to manually go and change my 'JAVA_HOME' system variable whenever I need to work on a ...
2
votes
2answers
254 views
How to get file list using system variable %LOCALAPPDATA%?
I want to read the content of the folder located at %LOCALAPPDATA%. But it fails when I tried
Directory.GetDirectories("%LOCALAPPDATA%");
I get "The name 'Directory' does not exist in the current ...
0
votes
1answer
70 views
Is there an API to get the original variable values defined in OS
In the Windows System Properties | Environment Variables, there is a variable "AppStatus=status1".
There is an exe named MyApp.exe. In the implementation it changes the variable with the code.
int ...
0
votes
0answers
20 views
android DVM endorsed dirs
is there any such concept on Android as the "java.endorsed.dirs" system variable ? How do I set it if so ?
If not, what I am after is loading some custom java.util.zip classes which reside in some ...
0
votes
0answers
155 views
how to use variable in config.xml of weblogic domain template
I'm trying to use a weblogic domain template to create a server/domain with a variable AdminServer name.
What I'd like to do is to use a system variable (e.g.$USER) from within the config.xml file of ...
0
votes
2answers
60 views
Is it possible to see variable states in native iPhone apps?
For example, if upon launching my app I wanted to see who the current caller was or what the latest SMS message was from "Phone" or "Messages", are there classes available that can access information ...
0
votes
7answers
50k views
How to set java_home on Windows 7?
I went to the Environment Variables in 'System' in the control panel and made 2 new variables.
one for user variables and one for system variables, both named JAVA_HOME and both pointing to
...
0
votes
2answers
52 views
Unable to get a system variable work for manuals
I have the following system variable in .zshrc
manuals='/usr/share/man/man<1-9>'
I run unsuccessfully
zgrep -c compinit $manuals/zsh*
I get
zsh: no matches found: ...
-1
votes
1answer
83 views
Powershell script to remove tempory files and registry keys
I've created a small PowerShell script to remove a Autodesk application. However, PowerShell doesn't seam to like system variables like %username%. Whats the best way of achieving this in ...