CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 5 of 5
  1. #1
    Join Date
    Jun 1999
    Posts
    22

    Getting Windows Directory

    Hello I would like to know if anyone knows how to get the Windows Directory in Java.
    I would appreciate it if u can send me some code that dows this.
    I am hard coding it for now and I really do not wnat to do that. Thanks alot.

    CODER '99

    "I think I am - therefore I am"

  2. #2
    Join Date
    Sep 1999
    Location
    Madurai , TamilNadu , INDIA
    Posts
    1,024

    Re: Getting Windows Directory


    What do you mean by "Windows Directory in Java." ?


  3. #3
    Join Date
    Jun 1999
    Posts
    22

    Re: Getting Windows Directory

    What I mean by Windows Directory is that it could tell me the harddrive as well as windows dir
    e.g if the use is runnig Windoews it returns
    C:\windows or
    and NT it returns C:\Winnt
    That is what I mean by Getting the Windows Directory

    so how can I do this in Java

    "I think I am - therefore I am"

  4. #4
    Join Date
    Jun 1999
    Location
    Atlanta, GA
    Posts
    57

    Re: Getting Windows Directory

    You can query the system environment for SystemRoot will give you the Windows directory.



    Meher

  5. #5
    Join Date
    Jun 1999
    Location
    Atlanta, GA
    Posts
    57

    Re: Getting Windows Directory

    I'm sorry about the earlier reply.
    You can not query the system environment variables directly so you have to do in another way.
    You have to have a property file ( like win.ini ) to your application and feed this info in that file before you run the application. In your application you have to read the property file and pick the required info. and do it accordingly.
    Basically property file will be a key and value pair that you can create using java.util.Properties

    Hope this helps ...

    Meher

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured