Thread: Environment Variables, An End to Paths.

Results 1 to 3 of 3
  1. #1 Environment Variables, An End to Paths. 
    Whitey
    Guest
    Well, Since lots of you Seem to be using long paths and complicated Tutorials, I though i'd remind you of what should have been a first step when Starting Java and JDK. (This only works for windows?)

    First, Go to Control Panel, Then system, Then Click Advanced Tab. Look to the Bottom and Find Environment Variables. In there should be one callled 'path' It might look like this:
    Code:
    %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;
    Add the Location of Your JDK/Bin Folder, so It will loook like
    Code:
    %SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;C:\Program Files\Java\jdk1.6.0_01\bin
    Now, you can use things like Javac without a path, So the Best compiler source is now
    Code:
    javac *.java
    pause
    The end
     

  2. #2  
    Mariushka
    Guest
    But if ppl use Mod Taharok's perfect compiler they dont need it...
     

  3. #3  
    Whitey
    Guest
    Yeah, But if you use this, you can use ALL the JDK tools without having a path infront of them. Much easier, and quicker to compile and stuff
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. client paths
    By sexyrussian in forum Help
    Replies: 3
    Last Post: 05-01-2010, 01:44 AM
  2. How to fix 'Environment Variables'
    By architect° in forum PC
    Replies: 3
    Last Post: 02-23-2009, 02:32 AM
  3. Replies: 6
    Last Post: 05-10-2008, 01:22 AM
  4. paths and compilers! for xp
    By king swintell in forum Tutorials
    Replies: 8
    Last Post: 04-21-2008, 01:42 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •