Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

FTP applet

Status
Not open for further replies.

gapla

Programmer
Dec 15, 2003
37
ES
I need a web based Java upload client so my clients can upload files to a novell web server and a linux web server. The files will be up to 2GB in size
 
What code do you have so far ?

There are no core java ftp classes, but they do exist undocumented in Sun's version of the JRE. The classes are in these two packages :

import sun.net.ftp.*;
import sun.net.*;

You will need to look into using these classes :

FtpClient
TelnetInputStream
TelnetOutputStream
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top