How do I import libraries in my java program without using an IDE like Netbeans? In Netbeans I do it this way:
How can I achieve the same thing by just using notepad++ or programmer's notepad. As much as possible I don't want to use Netbeans because it would be overkill since I'm only working on simple projects.
javac -classpath external.jar myClass.java
EDIT:
If your main class is in a package
package com.mycompany;
public class myClass
{
...
...
then
you'll need
javac -classpath external.jar com/mycompany/myClass.java
and
to run
java -classpath external.jar com.mycompany.myClass