ImageVerifierCode 换一换
格式:DOCX , 页数:9 ,大小:16.17KB ,
资源ID:3153353      下载积分:3 金币
快捷下载
登录下载
邮箱/手机:
温馨提示:
快捷下载时,用户名和密码都是您填写的邮箱或者手机号,方便查询和重复下载(系统自动生成)。 如填写123,账号就是123,密码也是123。
特别说明:
请自助下载,系统不会自动发送文件的哦; 如果您已付费,想二次下载,请登录后访问:我的下载记录
支付方式: 支付宝    微信支付   
验证码:   换一换

加入VIP,免费下载
 

温馨提示:由于个人手机设置不同,如果发现不能下载,请复制以下地址【https://www.bdocx.com/down/3153353.html】到电脑端继续下载(重复下载不扣费)。

已注册用户请登录:
账号:
密码:
验证码:   换一换
  忘记密码?
三方登录: 微信登录   QQ登录  

下载须知

1: 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。
2: 试题试卷类文档,如果标题没有明确说明有答案则都视为没有答案,请知晓。
3: 文件的所有权益归上传用户所有。
4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
5. 本站仅提供交流平台,并不能对任何下载内容负责。
6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

版权提示 | 免责声明

本文(最新java做的比较完善的FTP上传下载文件服务器源码.docx)为本站会员(b****6)主动上传,冰豆网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对上载内容本身不做任何修改或编辑。 若此文所含内容侵犯了您的版权或隐私,请立即通知冰豆网(发送邮件至service@bdocx.com或直接QQ联系客服),我们立即给予删除!

最新java做的比较完善的FTP上传下载文件服务器源码.docx

1、最新java做的比较完善的FTP上传下载文件服务器源码【最新】java做的比较完善的FTP上传下载文件服务器源码 Filename: ftp.javaAuthor: leetsing(elove)Create date: 2004-08-30Use: connect to FTP server,then upload and download fileModify date: 2004-09-05 add to upload file 2004-09-13 add to download fileCopy right: Magisky Media Technology Co.,Ltd.*字串7

2、*/import cz.dhl.io.*;/import cz.dhl.ftp.*;import .ftp.*;import .*;import java.applet.*;import java.io.*;import java.io.IOException;import java.util.StringTokenizer;import .ftp.FtpClient;import java.util.ArrayList;public class ftp extends AppletFtpClient aftp;DataOutputStream outputs ;TelnetInputStre

3、am ins;TelnetOutputStream outs;int ch;public String a;String hostname=;private String path = /;public static void main(String args) String hostname = 192.168.0.56; int port = 2121; String uid = lee; String pwd = lee; String RWFileDir = D:smsftp;/文件目录 /连接ftp服务器 ftp ft = new ftp(); ft.connect(RWFileDi

4、r,hostname,port,uid,pwd);字串3 /下载文件 if (ft.aftp != null) try ft.getNameList(RWFileDir); catch(IOException e) System.out.println(下载文件出错:+e); /上传文件 if (ft.aftp != null) String sdir = RWFileDir + subunsubfromsp; File fdir = new File(sdir); String FileName = ; for(int i=0;i FileName = sdir + (fdir.list()

5、i; ft.uploadFile(RWFileDir,FileName); /System.out.println(成功上传的文件:); /ft.showFileContents(subunsubfromsp); /删除subunsubfromsp目录下已经上传的文件文件 字串6/ ft.deleFile(RWFileDir); /断开服务器连接 ft.stop(RWFileDir);public FtpClient connect(String RWFileDir,String hostname,int port,String uid,String pwd) this.hostname =

6、hostname; System.out.println(正在连接+hostname+,请等待.); try aftp = new FtpClient(hostname,port); aftp.login(uid,pwd); aftp.binary(); /aftp.openPortDataConnection(); a = 连接主机:+hostname+成功!; System.out.println(a); catch(FtpLoginException e) a=登陆主机:+hostname+失败!请检查用户名或密码是否正确:+e; System.out.println(a); /retu

7、rn false; catch (IOException e) a=连接主机:+hostname+失败!请检查端口是否正确:+e; 字串3 System.out.println(a); /return false; catch(SecurityException e) a=无权限与主机:+hostname+连接!请检查是否有访问权限:+e; System.out.println(a); /return false; log(RWFileDir,a); return aftp;public void stop(String RWFileDir) String message = ; try if

8、(aftp!=null) aftp.closeServer(); message = 与主机+hostname+连接已断开!; System.out.println(message); log(RWFileDir,message); catch(IOException e) message = 与主机+hostname+断开连接失败!+e; 字串2 System.out.println(message); log(RWFileDir,message); public boolean downloadFile(String RWFileDir,String filepathname) boole

9、an result=true; String message = ; if (aftp != null) System.out.println(正在下载文件+filepathname+,请等待.); String badfile = filepathname.substring(filepathname.length()-4,filepathname.length(); String badlog = filepathname.substring(filepathname.length()-7,filepathname.length(); String baddir = ; if (pareT

10、o(.bad) != 0) & (pareTo(.badlog) != 0) baddir = subunsubtosp; else baddir = bad; 字串9 String strdir = subunsubtosp; /System.out.println(RWFileDir + baddir + filepathname); try /FtpClient fc=new FtpClient(192.168.0.56,2121); /fc.login(lee,lee); int ch; File fi = new File(RWFileDir + baddir + filepathn

11、ame); /aftp.cd(strdir); RandomAccessFile getFile = new RandomAccessFile(fi,rw); getFile.seek(0); TelnetInputStream fget=aftp.get(strdir+filepathname); DataInputStream puts = new DataInputStream(fget); while (ch = puts.read() = 0) getFile.write(ch); /s.delete(); 字串1 fget.close(); getFile.close(); /fc

12、.closeServer(); message = 下载+filepathname+文件到+baddir +目录成功!; System.out.println(message); log(RWFileDir,message); catch(IOException e) message = 下载+filepathname+文件到+baddir +目录失败!+e; System.out.println(message); log(RWFileDir,message); result = false ; else result = false; return result;public boolea

13、n uploadFile(String RWFileDir,String filepathname) boolean result=true; 字串8 String message = ; if (aftp != null) System.out.println(正在上传文件+filepathname+,请等待.); try String fg =new String(subunsubfromsp); int index = filepathname.lastIndexOf(fg); String filename = filepathname.substring(index+1); File

14、 localFile = new File(filepathname) ; RandomAccessFile sendFile = new RandomAccessFile(filepathname,r); / sendFile.seek(0); /改名上传temp_ filename = filename.substring(0,15)+temp_+filename.substring(15,filename.length(); outs = aftp.put(filename); outputs = new DataOutputStream(outs); 字串8 while (sendFile.getFilePo

copyright@ 2008-2022 冰豆网网站版权所有

经营许可证编号:鄂ICP备2022015515号-1