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
Why java doesn’t support multiple inheritances?
What is a concrete classes? Is Java object class is concrete class?
What is a boolean in java?
Describe what a thread-local variable is in java?
What is t type java?
What is the use of list in java?
What is string length in java?
Which is better 64 bit or 32 bit?
How many types of methods are there in java?
Does constructor return any value?
Is java a pure object oriented language?
What is the difference between equals() and == in java?
Explain how can you debug the Java code?
Why is flag used in java?
what is inner class in java?