Search:

Type: Posts; User: Norm

Search: Search took 0.20 seconds.

  1. Re: Third party application utilizing Java portion of registry and environmental vari

    Did you try the code I posted?
  2. Re: Third party application utilizing Java portion of registry and environmental vari

    AFAIK Java doesn't set any Environment variables. It's up to the users.
    Try this to see what's available from java:


    Properties props = System.getProperties();
    props.list(System.out);
  3. Re: Third party application utilizing Java portion of registry and environmental vari

    Can you write a test program to show what you are trying to do?
    I don't see any problem building a String by concatenating the values of Environment variables with other Strings.

    How are you...
  4. Re: Third party application utilizing Java portion of registry and environmental vari

    Also Look at the System class. It has a method for getting the value of an Environment variable.
Results 1 to 4 of 4