What is a classpath and how do I set it?

When programming in Java, you make other classes available to the class you are writing by putting something like this at the top of your source file: import org.javaguy.coolframework.MyClass; Or sometimes you ‘bulk import’ stuff by saying: import org.javaguy.coolframework.*; So later in your program when you say: MyClass mine = new MyClass(); The Java Virtual … Read more