`
madinggui
  • 浏览: 10911 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

ftp上传和下载

    博客分类:
  • java
阅读更多
Java代码
1.package com.northking.dataManager.util;  
2.import sun.net.ftp.*;  
3.import sun.net.*;  
4.import java.io.*;  
5. 
6./** 
7. * 使用sun.net.ftp工具包进行ftp上传下载 
8. * @author maochangming 
9. * @date 2008-6-20  13:09:29 
10. * @description: 
11. */ 
12.public class FtpTool {  
13.    String ip;  
14.    int port;  
15.    String user;  
16.    String pwd;  
17.    String remotePath;  
18.    String localPath;  
19.    FtpClient ftpClient;  
20. 
21.    /** 
22.     * 连接ftp服务器 
23.     * @param ip 
24.     * @param port 
25.     * @param user 
26.     * @param pwd 
27.     * @return 
28.     * @throws Exception 
29.     */ 
30.    public boolean connectServer(String ip, int port, String user, String pwd)  
31.        throws Exception {  
32.        boolean isSuccess = false;  
33.        try {  
34.            ftpClient = new FtpClient();  
35.            ftpClient.openServer(ip, port);  
36.            ftpClient.login(user, pwd);  
37.            isSuccess = true;  
38.        } catch (Exception ex) {  
39.            throw new Exception("Connect ftp server error:" + ex.getMessage());  
40.        }  
41.        return isSuccess;  
42.    }  
43. 
44.    /** 
45.     * 下载文件 
46.     * @param remotePath 
47.     * @param localPath 
48.     * @param filename 
49.     * @throws Exception 
50.     */ 
51.    public void downloadFile(String remotePath,String localPath, String filename) throws Exception {  
52.        try {  
53.            if (connectServer(getIp(), getPort(), getUser(), getPwd())) {  
54.                if (remotePath.length() != 0)  
55.                    ftpClient.cd(remotePath);  
56.                ftpClient.binary();  
57.                TelnetInputStream is = ftpClient.get(filename);  
58.                File file_out = new File(localPath + File.separator + filename);  
59.                FileOutputStream os = new FileOutputStream(file_out);  
60.                byte[] bytes = new byte[1024];  
61.                int c;  
62.                while ((c = is.read(bytes)) != -1) {  
63.                    os.write(bytes, 0, c);  
64.                }  
65.                is.close();  
66.                os.close();  
67.                ftpClient.closeServer();  
68.            }  
69.        } catch (Exception ex) {  
70.            throw new Exception("ftp download file error:" + ex.getMessage());  
71.        }  
72.    }  
73. 
74.    /** 
75.     * 上传文件 
76.     * @param remotePath 
77.     * @param localPath 
78.     * @param filename 
79.     * @throws Exception 
80.     */ 
81.    public void uploadFile(String remotePath,String localPath, String filename) throws Exception {  
82.        try {  
83.            if (connectServer(getIp(), getPort(), getUser(), getPwd())) {  
84.                if (remotePath.length() != 0)  
85.                    ftpClient.cd(remotePath);  
86.                ftpClient.binary();  
87.                TelnetOutputStream os = ftpClient.put(filename);  
88.                File file_in = new File(localPath + File.separator + filename);  
89.                FileInputStream is = new FileInputStream(file_in);  
90.                byte[] bytes = new byte[1024];  
91.                int c;  
92.                while ((c = is.read(bytes)) != -1) {  
93.                    os.write(bytes, 0, c);  
94.                }  
95.                is.close();  
96.                os.close();  
97.                ftpClient.closeServer();  
98.            }  
99.        } catch (Exception ex) {  
100.            throw new Exception("ftp upload file error:" + ex.getMessage());  
101.        }  
102.    }  
103. 
104.    /** 
105.     * @return 
106.     */ 
107.    public String getIp() {  
108.        return ip;  
109.    }  
110. 
111.    /** 
112.     * @return 
113.     */ 
114.    public int getPort() {  
115.        return port;  
116.    }  
117. 
118.    /** 
119.     * @return 
120.     */ 
121.    public String getPwd() {  
122.        return pwd;  
123.    }  
124. 
125.    /** 
126.     * @return 
127.     */ 
128.    public String getUser() {  
129.        return user;  
130.    }  
131. 
132.    /** 
133.     * @param string 
134.     */ 
135.    public void setIp(String string) {  
136.        ip = string;  
137.    }  
138. 
139.    /** 
140.     * @param i 
141.     */ 
142.    public void setPort(int i) {  
143.        port = i;  
144.    }  
145. 
146.    /** 
147.     * @param string 
148.     */ 
149.    public void setPwd(String string) {  
150.        pwd = string;  
151.    }  
152. 
153.    /** 
154.     * @param string 
155.     */ 
156.    public void setUser(String string) {  
157.        user = string;  
158.    }  
159. 
160.    /** 
161.     * @return 
162.     */ 
163.    public FtpClient getFtpClient() {  
164.        return ftpClient;  
165.    }  
166. 
167.    /** 
168.     * @param client 
169.     */ 
170.    public void setFtpClient(FtpClient client) {  
171.        ftpClient = client;  
172.    }  
173. 
174.    /** 
175.     * @return 
176.     */ 
177.    public String getRemotePath() {  
178.        return remotePath;  
179.    }  
180. 
181.    /** 
182.     * @param string 
183.     */ 
184.    public void setRemotePath(String string) {  
185.        remotePath = string;  
186.    }  
187. 
188.    /** 
189.     * @return 
190.     */ 
191.    public String getLocalPath() {  
192.        return localPath;  
193.    }  
194. 
195.    /** 
196.     * @param string 
197.     */ 
198.    public void setLocalPath(String string) {  
199.        localPath = string;  
200.    }  
201. 
202.} 
package com.northking.dataManager.util;
import sun.net.ftp.*;
import sun.net.*;
import java.io.*;

/**
* 使用sun.net.ftp工具包进行ftp上传下载
* @author maochangming
* @date 2008-6-20  13:09:29
* @description:
*/
public class FtpTool {
String ip;
int port;
String user;
String pwd;
String remotePath;
String localPath;
FtpClient ftpClient;

/**
* 连接ftp服务器
* @param ip
* @param port
* @param user
* @param pwd
* @return
* @throws Exception
*/
public boolean connectServer(String ip, int port, String user, String pwd)
throws Exception {
boolean isSuccess = false;
try {
ftpClient = new FtpClient();
ftpClient.openServer(ip, port);
ftpClient.login(user, pwd);
isSuccess = true;
} catch (Exception ex) {
throw new Exception("Connect ftp server error:" + ex.getMessage());
}
return isSuccess;
}

/**
* 下载文件
* @param remotePath
* @param localPath
* @param filename
* @throws Exception
*/
public void downloadFile(String remotePath,String localPath, String filename) throws Exception {
try {
if (connectServer(getIp(), getPort(), getUser(), getPwd())) {
if (remotePath.length() != 0)
ftpClient.cd(remotePath);
ftpClient.binary();
TelnetInputStream is = ftpClient.get(filename);
File file_out = new File(localPath + File.separator + filename);
FileOutputStream os = new FileOutputStream(file_out);
byte[] bytes = new byte[1024];
int c;
while ((c = is.read(bytes)) != -1) {
os.write(bytes, 0, c);
}
is.close();
os.close();
ftpClient.closeServer();
}
} catch (Exception ex) {
throw new Exception("ftp download file error:" + ex.getMessage());
}
}

/**
* 上传文件
* @param remotePath
* @param localPath
* @param filename
* @throws Exception
*/
public void uploadFile(String remotePath,String localPath, String filename) throws Exception {
try {
if (connectServer(getIp(), getPort(), getUser(), getPwd())) {
if (remotePath.length() != 0)
ftpClient.cd(remotePath);
ftpClient.binary();
TelnetOutputStream os = ftpClient.put(filename);
File file_in = new File(localPath + File.separator + filename);
FileInputStream is = new FileInputStream(file_in);
byte[] bytes = new byte[1024];
int c;
while ((c = is.read(bytes)) != -1) {
os.write(bytes, 0, c);
}
is.close();
os.close();
ftpClient.closeServer();
}
} catch (Exception ex) {
throw new Exception("ftp upload file error:" + ex.getMessage());
}
}

/**
* @return
*/
public String getIp() {
return ip;
}

/**
* @return
*/
public int getPort() {
return port;
}

/**
* @return
*/
public String getPwd() {
return pwd;
}

/**
* @return
*/
public String getUser() {
return user;
}

/**
* @param string
*/
public void setIp(String string) {
ip = string;
}

/**
* @param i
*/
public void setPort(int i) {
port = i;
}

/**
* @param string
*/
public void setPwd(String string) {
pwd = string;
}

/**
* @param string
*/
public void setUser(String string) {
user = string;
}

/**
* @return
*/
public FtpClient getFtpClient() {
return ftpClient;
}

/**
* @param client
*/
public void setFtpClient(FtpClient client) {
ftpClient = client;
}

/**
* @return
*/
public String getRemotePath() {
return remotePath;
}

/**
* @param string
*/
public void setRemotePath(String string) {
remotePath = string;
}

/**
* @return
*/
public String getLocalPath() {
return localPath;
}

/**
* @param string
*/
public void setLocalPath(String string) {
localPath = string;
}

}


Junit测试类

Java代码
1.package com.northking.dataManager.dataimport.parse.test;  
2. 
3.import com.northking.dataManager.util.FtpTool;  
4. 
5.import junit.framework.TestCase;  
6. 
7./** 
8. * @author maochangming 
9. * @date 2008-6-20  13:09:11 
10. * @description: 
11. */ 
12.public class FtpToolTest extends TestCase {  
13.    FtpTool ftpTool;  
14. 
15.    /** 
16.     * Constructor for FtpToolTest. 
17.     * @param arg0 
18.     */ 
19.    public FtpToolTest(String arg0) {  
20.        super(arg0);  
21.    }  
22. 
23.    public static void main(String[] args) {  
24.        junit.textui.TestRunner.run(FtpToolTest.class);  
25.    }  
26.      
27.    public void testDownLoadFile()throws Exception{  
28.        ftpTool.downloadFile(ftpTool.getRemotePath(),"c:/downloads","JBFImgMng.CAB");  
29.    }  
30. 
31.    /* 
32.     * @see TestCase#setUp() 
33.     */ 
34.    protected void setUp() throws Exception {  
35.        ftpTool = new FtpTool();  
36.        ftpTool.setIp("10.164.12.70");  
37.        ftpTool.setPort(2100);  
38.        ftpTool.setUser("share");  
39.        ftpTool.setPwd("share");  
40.        ftpTool.setRemotePath("/paeams");  
41.        super.setUp();  
42.    }  
43. 
44.    /* 
45.     * @see TestCase#tearDown() 
46.     */ 
47.    protected void tearDown() throws Exception {  
48.        super.tearDown();  
49.    }  
50. 
51.}
分享到:
评论

相关推荐

    JAVA实现简单的对FTP上传与下载

    总的来说,使用Java实现FTP上传和下载涉及网络通信、文件操作和错误处理等多个方面的知识。通过"ftpLoadDown.jar"库,我们可以简化这个过程,使得开发者可以专注于业务逻辑,而无需关心底层的FTP协议细节。在实际...

    winform ftp上传和下载控件

    在.NET框架中,WinForm...总之,"winform ftp上传和下载控件"是一个便捷的开发工具,它简化了在WinForm应用中实现FTP功能的过程,提供了异步上传下载和断点续传等高级特性,使开发者能更专注于应用程序的其他核心功能。

    java ftp上传和下载

    Java FTP上传和下载可以通过Apache Commons Net库的FTPClient实现,结合ScheduledExecutorService可以轻松创建定时任务来定期执行文件传输。这在需要自动化文件管理和备份的场景中非常有用。通过理解FTP的工作原理和...

    FTP上传和下载,可以通过本地和服务器之间建立间接,通过FTP方式进行文件操作等

    FTP上传和下载,可以通过本地和服务器之间建立间接,通过FTP方式进行文件操作等

    FTP上传和下载功能实现

    本程序主要利用java编写出FTP上传和下载功能的代码,可以从FTP服务器上下载东西,和上传资料到FTP服务器上

    FTP上传与下载源码(Pb9)

    但根据标题和描述,这个源码应该包含了实现FTP上传和下载功能的Pb9代码示例,可能包括了上述提到的连接、登录、选择目录、传输文件等步骤的实现。如果要深入学习和使用,需要实际查看和理解源码的结构和逻辑。

    C#开发FTP上传和下载

    案例中提供的两个FTP上传下载案例,可能是分别演示了这两项功能的完整代码示例,包括如何初始化FTPClient,如何处理异常,以及如何控制FTP会话的细节。分析这些案例可以帮助深入理解FTP操作的实现过程,并为自己的...

    JAVA FTP上传和下载所需JAR和源码

    这个压缩包“JAVA FTP上传和下载”包含了实现FTP操作所需的JAR文件和源代码,帮助开发者快速集成FTP功能。 首先,我们要了解Java中的FTP客户端库,如Apache Commons Net。这个库提供了丰富的API,可以方便地执行FTP...

    一款小巧的ftp软件,主要用于局域网简单的ftp上传和下载

    Xlight FTP服务器 3.1.1(一款小巧的ftp软件,主要用于局域网简单的ftp上传和下载)

    Java实现FTP上传与下载

    在Java编程中,FTP(File Transfer Protocol)是一个用于在计算机之间传输文件的标准协议。这篇博客“Java实现FTP...在实际开发中,确保正确处理各种异常情况,并关注性能优化,如文件上传下载的速度和网络资源的使用。

    FTP上传和下载的源码

    "FTP上传和下载的源码"通常包含以下几个核心组件和功能: 1. **FTP连接管理**:这部分代码负责建立与FTP服务器的连接,包括登录验证(用户名和密码)、设置工作目录等。使用FTP命令如`USER`、`PASS`、`CWD`等。 2....

    ftp上传和下载的jar包

    ftp上传和下载的jar包apche,亲测可用 不好用联系我哦 加油

    C# FTP上传下载文件

    FTP上传下载文件

    FTP上传和下载

    • 队列多个文件进行上传和下载 • 会话恢复 - 恢复由于断电或系统崩溃引起的传送队列中断 • 站点对传 (FXP) • FTP/HTTP 代理 • SOCKS 4/5 支持 • 远程文件查看和编辑 • 搜索文件 ...以及更多功能!

    FTP文件上传和下载管理类(C++)

    在C++中实现FTP功能,可以帮助开发者实现在本地计算机与远程服务器之间的文件上传和下载。 FTPManager类是这个压缩包的核心,它封装了FTP协议的相关操作,使得在C++程序中使用FTP变得更加简单。FTPManager.cpp和...

    winform实现FTP上传、下载、删除文件

    在本文中,我们将深入探讨如何使用WinForm应用程序实现FTP(File Transfer Protocol)的基本操作,包括文件的上传、下载和删除。WinForm是.NET框架中用于创建桌面应用的用户界面组件,而FTP则是一种广泛用于互联网上...

    VC++ FTP上传下载

    总的来说,VC++ FTP上传下载涉及网络编程、文件操作和XML处理等多个方面。开发者需要熟悉WinInet API或第三方FTP库的使用,理解FTP协议的工作原理,以及如何在C++中处理XML文件。通过这些技术,可以在VC++环境中实现...

    VB6 FTP 上传 下载 源代码

    VB6 FTP 上传 下载 源代码,用的API,不是那种控件版本,拿来就能用. VB6 FTP 上传 下载 源代码,用的API,不是那种控件版本,拿来就能用. VB6 FTP 上传 下载 源代码,用的API,不是那种控件版本,拿来就能用.

    VB API 实现FTP上传下载源代码

    **VB API FTP上传下载源代码详解** 在信息技术领域,FTP(File Transfer Protocol)是一种用于在网络上进行文件传输的标准协议。在VB(Visual Basic)环境中,我们可以使用API(Application Programming Interface...

    domino实现ftp上传和下载的案例

    根据提供的文件信息,我们可以归纳出以下关键知识点,主要围绕如何使用Domino Lotus平台结合Java语言实现FTP(File Transfer Protocol)的文件上传与下载功能。 ### 一、理解Domino Lotus平台 1. **Domino Lotus...

Global site tag (gtag.js) - Google Analytics