| Author |
Classpath, Packages, etc.
|
Claude Cundiff
Ranch Hand
Joined: Mar 20, 2008
Posts: 78
|
|
Hello everyone. I'm going to try to keep this as brief as possible... I'm having some issues understanding how to use multiple packages and set the classpath. So far, I've only dealt with single source files. I've written two .bat files, one to compile and the other to run the program: All the class files are in the following directory: C:\Java_Programs
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12953
|
|
Hello Claude, The following line in your compile .bat file isn't correct: path javac c:\Java_Programs\Meaty.java "PATH" is an environment variable in Windows. You set it to tell Windows where to look for executable programs. The Java compiler (javac.exe) is a program, and you need to tell Windows that it's in the bin directory where you installed the JDK. Step 4 of the JDK installation instructions explains how you should set the PATH. When this is set correctly, you can compile your Java source code with the following commands: c: cd \Java_Programs javac Meaty.java I am moving this topic to the Java in General (Beginner) forum, because it's not directly related to SCJP. Please click on the link at the top of this page to go there.
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
 |
|
|
subject: Classpath, Packages, etc.
|
|
|