what is the need to set path in java? how many ways to set
path in java? Explain breif?
Answer Posted / sadhi
We keep all "executable files"(like .exe files) and "batch
files"(like .bat) in path variable. And we keep all jar
files and class files in classpath variables.
So path is set according to the .exe files & .bat files And
classpath is set according to the .jar files & .class files.
Operating system tries to find .exe and .bat files in path
and JVM tries to find all classes in classpath.
set path is loading the environment variables with operating
system or javac.
setting the path in windows xp.
steps to set path for java:
1. go to ->my computer-> properties->advanced->
->environment variables.
2. in this window go to system variables and select -> new
3. now in variable write: classpath
4. write code as soon here in variable value:
;.;C:\Program Files\Java\jdk1.5.0\bin;
5. click ok and ok and ok
| Is This Answer Correct ? | 15 Yes | 2 No |
Post New Answer View All Answers
Can we have multiple catch block for a try block?
how can i use a nonsynchronized hashtable?
Why string is not a wrapper class?
Explain method overloading?
Why we do exception handling in java and how many types of exceptions are there?
How do you define a set in java?
How can you add and remove nodes in jtree?
Explain about strings in java?
What does || mean in code?
Is java free for commercial?
Is java an ide?
What are basic data types?
Is integer passed by reference in java?
What is data structure in java?
What is an object's lock and which object's have locks in java programming?