I want to add a .jar file to the classpath, but I don't know how.
"
SimpleFTP is a Java FTP client package that lets you connect to FTP servers and upload files.
Download simpleftp.jar
Using SimpleFTP in your Java programs
To use SimpleFTP, simply add simpleftp.jar to your classpath and import the package in whichever classes will use it.
import org.jibble.simpleftp.*;
"
So I downloaded it, but now what? In what folder should I put it?
Because if I do
import org.jibble.simpleftp.*;
now, when compiling it to a class file it says it cannot find the
import org.jibble.simpleftp.*;
..
DudeJonne

