Hi,
I'm a newbie and I'm using eclipse to create a java program, and I can't use all of the classes in the jar. Any ideas? Sorry if this is a super-newbie question.
package org.noaa.espc.nde.dhs.ftp;
import com.enterprisedt.net.ftp.*;
import com.enterprisedt.net.ftp.FTPClient;
public class TestFtp
{
FTPClient fc = new FTPClient();
FileTransferClient ftp = new FileTransferClient();
}
I get a "FileTransferClient cannot be resolved to a type" on that second to last line, I also can't import
com.enterprisedt.net.ft.FileTransferClient yet your howtocreateanftpconnection.html has this code in
it. Shouldn't I be able to use any of the classes in the jar? Thanks in advance.