`

(转)Java使用Apache FtpServer实现嵌入式FTP服务器

 
阅读更多

     转自:http://blog.csdn.net/xiao__gui/article/details/19810379

       Apache FtpServer是一个纯Java实现的FTP服务器,基于大名鼎鼎的网络框架apache MINA实现。它既可以作为一个完整的FTP服务器单独使用,也可以在Java程序中调用,类似于Jetty可以作为嵌入式的HTTP服务器。

下面介绍如何在Java中启动FTP服务器。

Apache FtpServer下载地址,目前最新版是1.0.6:

http://mina.apache.org/ftpserver-project/index.html

解压后在apache-ftpserver-1.0.6\common\lib文件夹中添加需要的jar包:(我已上传到附件)

ftpserver-core-1.0.6.jar
log4j-1.2.14.jar
mina-core-2.0.4.jar
slf4j-api-1.5.2.jar
slf4j-log4j12-1.5.2.jar

另外,项目中还需要加入log4j的配置文件,当然没有话程序也可以跑,只是会出现一些警告信息而且没有日志记录。

1、最简单的FTP服务器

 

[java] view plaincopy在CODE上查看代码片派生到我的代码片
 
  1. public static void main(String[] args) throws FtpException {  
  2.       
  3.     FtpServerFactory serverFactory = new FtpServerFactory();  
  4.     FtpServer server = serverFactory.createServer();  
  5.     server.start();  
  6.       
  7. }  

这是最简单的FTP服务器。运行程序,启动FTP服务器后,在地址栏中输入ftp://localhost,可以看到以下界面,要求输入用户名密码。当然这个FTP是进不去的,因为它是最简单的FTP服务器,简单到没有用户。

 

2、设置匿名用户及对应的服务器文件夹

 

[java] view plaincopy在CODE上查看代码片派生到我的代码片
 
  1. public static void main(String[] args) throws FtpException {  
  2.       
  3.     FtpServerFactory serverFactory = new FtpServerFactory();  
  4.   
  5.     BaseUser user = new BaseUser();  
  6.     user.setName("anonymous");  
  7.     user.setHomeDirectory("D:/test");  
  8.       
  9.     serverFactory.getUserManager().save(user);  
  10.       
  11.     FtpServer server = serverFactory.createServer();  
  12.     server.start();  
  13.       
  14. }  

添加一个匿名用户anonymous,并设置它对应的文件夹是D:/test。再次进入ftp://localhost,可以看到D:/test中的文件。但是此时的FTP权限是只读的,也就是只能查看文件,但是不能增删改。

 

3、用户可写的权限设置

 

[java] view plaincopy在CODE上查看代码片派生到我的代码片
 
  1. public static void main(String[] args) throws FtpException {  
  2.       
  3.     FtpServerFactory serverFactory = new FtpServerFactory();  
  4.   
  5.     BaseUser user = new BaseUser();  
  6.     user.setName("anonymous");  
  7.     user.setHomeDirectory("D:/test");  
  8.       
  9.     List<Authority> authorities = new ArrayList<Authority>();  
  10.     authorities.add(new WritePermission());  
  11.     user.setAuthorities(authorities);  
  12.       
  13.     serverFactory.getUserManager().save(user);  
  14.       
  15.     FtpServer server = serverFactory.createServer();  
  16.     server.start();  
  17.       
  18. }  

加入可写的权限,此时就能对FTP服务器上的文件进行增删改了。

 

4、用户登录

 

[java] view plaincopy在CODE上查看代码片派生到我的代码片
 
  1. public static void main(String[] args) throws FtpException {  
  2.       
  3.     FtpServerFactory serverFactory = new FtpServerFactory();  
  4.   
  5.     BaseUser user = new BaseUser();  
  6.     user.setName("test");  
  7.     user.setPassword("123456");  
  8.     user.setHomeDirectory("D:/test");  
  9.       
  10.     serverFactory.getUserManager().save(user);  
  11.       
  12.     FtpServer server = serverFactory.createServer();  
  13.     server.start();  
  14.       
  15. }  

添加用户test,密码是123456,此时客户端要想进入ftp,必须输入正确的用户名密码。

 

5、配置文件设置用户

 

[java] view plaincopy在CODE上查看代码片派生到我的代码片
 
  1. public static void main(String[] args) throws FtpException {  
  2.       
  3.     FtpServerFactory serverFactory = new FtpServerFactory();  
  4.   
  5.     PropertiesUserManagerFactory userManagerFactory = new PropertiesUserManagerFactory();  
  6.     userManagerFactory.setFile(new File("users.properties"));  
  7.       
  8.     serverFactory.setUserManager(userManagerFactory.createUserManager());  
  9.       
  10.     FtpServer server = serverFactory.createServer();  
  11.     server.start();  
  12.       
  13. }  

配置文件users.properties:

 

 

[plain] view plaincopy在CODE上查看代码片派生到我的代码片
 
  1. # Password is "admin"  
  2. ftpserver.user.admin.userpassword=21232F297A57A5A743894A0E4A801FC3  
  3. ftpserver.user.admin.homedirectory=D:/test  
  4. ftpserver.user.admin.enableflag=true  
  5. ftpserver.user.admin.writepermission=true  
  6. ftpserver.user.admin.maxloginnumber=0  
  7. ftpserver.user.admin.maxloginperip=0  
  8. ftpserver.user.admin.idletime=0  
  9. ftpserver.user.admin.uploadrate=0  
  10. ftpserver.user.admin.downloadrate=0  
  11.   
  12. ftpserver.user.anonymous.userpassword=  
  13. ftpserver.user.anonymous.homedirectory=D:/test  
  14. ftpserver.user.anonymous.enableflag=true  
  15. ftpserver.user.anonymous.writepermission=false  
  16. ftpserver.user.anonymous.maxloginnumber=20  
  17. ftpserver.user.anonymous.maxloginperip=2  
  18. ftpserver.user.anonymous.idletime=300  
  19. ftpserver.user.anonymous.uploadrate=4800  
  20. ftpserver.user.anonymous.downloadrate=4800  

这是通过配置文件users.properties设置用户。配置文件中包含两个用户:匿名用户anonymous和admin。anonymous只有只读权限,admin有可写权限。其中userpassword配置项是MD5加密的。其他配置项也很好理解。

 

 

//_______________________________________________________

 

   以上为转载,我根据Apache的FTPClient写了处理上传和下载的方法如下:

package com.wjy.FTPClient;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.OutputStream;

import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPFile;
import org.apache.commons.net.ftp.FTPReply;

public class FtpTransmission implements Transmission{
	private String serverUrl=null;
	private String userName=null;
	private String password=null;
	private String storePath=null;
	private int port=0;
	
	public FtpTransmission(String serverUrl, String userNameString,
			String password, String storePath, int port) {
		super();
		this.serverUrl = serverUrl;
		this.userName = userNameString;
		this.password = password;
		this.storePath = storePath;
		this.port = port;
	}

	public String getServerUrl() {
		return serverUrl;
	}

	public void setServerUrl(String serverUrl) {
		this.serverUrl = serverUrl;
	}

	public String getUserNameString() {
		return userName;
	}

	public void setUserNameString(String userNameString) {
		this.userName = userNameString;
	}

	public String getPassword() {
		return password;
	}

	public void setPassword(String password) {
		this.password = password;
	}

	public String getStorePath() {
		return storePath;
	}

	public void setStorePath(String storePath) {
		this.storePath = storePath;
	}

	public int getPort() {
		return port;
	}

	public void setPort(int port) {
		this.port = port;
	}

	/**
	 * Description:实现ftp的文件上传
	 * @author Jiyuan Wang
	 * @Version 1.0 Dec 16,2013
	 * @param fileName:上传的文件名称
	 * @param filePath:上传的文件路径
	 * @return  成功返回ture,失败返回false
	 */
	@Override
	public boolean fileUpload(String fileName,String filePath){
		boolean isSuccessed=false;
		FTPClient ftpClient=new FTPClient();
		FileInputStream input=null;
		try {
			input = new FileInputStream(new File(filePath));
		} catch (FileNotFoundException e1) {
			// TODO Auto-generated catch block
			e1.printStackTrace();
		}
		try {
			int reply=0;
			ftpClient.connect(serverUrl,port);
			ftpClient.login(userName, password);
			reply=ftpClient.getReplyCode();
			if(!FTPReply.isPositiveCompletion(reply)){
				ftpClient.disconnect();
				return isSuccessed;
			}
			ftpClient.changeWorkingDirectory(storePath);
			ftpClient.setBufferSize(1024); 
            //ftpClient.setControlEncoding("GBK"); 
            ftpClient.setFileType(FTPClient.BINARY_FILE_TYPE); 
			ftpClient.storeFile(fileName, input);
			
			input.close();
			ftpClient.logout();
			isSuccessed=true;
		} catch (Exception e) {
			// TODO: handle exception
			e.printStackTrace();
		}finally{
			if(ftpClient.isConnected()){
				try {
					ftpClient.disconnect();
				} catch (Exception e2) {
					// TODO: handle exception
					e2.printStackTrace();
				}
			}
		}
		return isSuccessed;
	}
	/**
	 * Description:实现ftp的文件下载
	 * @author Jiyuan Wang
	 * @Version 1.0 Dec 16,2013
	 * @param fileName:下载的文件名称
	 * @param localPath:下载后保存在本地的路径
	 * @return  成功返回ture,失败返回false
	 */
	@Override
	public boolean fileDownload(String fileName,String localPath){
		boolean isSuccessed=false;
		FTPClient ftpClient=new FTPClient();
		try {
			int reply=0;
			ftpClient.connect(serverUrl,port);
			ftpClient.login(userName, password);
			reply=ftpClient.getReplyCode();
			if(!FTPReply.isPositiveCompletion(reply)){
				ftpClient.disconnect();
				return isSuccessed;
			}
			ftpClient.changeWorkingDirectory(storePath);
			
			FTPFile[] files=ftpClient.listFiles();
			for(FTPFile file : files){
				if(file.getName().equals(fileName)){
					File localFile=new File(localPath+"/"+file.getName());
					OutputStream outputStream=new FileOutputStream(localFile);
					ftpClient.setBufferSize(1024); 
		            ftpClient.setFileType(FTPClient.BINARY_FILE_TYPE); 
					ftpClient.retrieveFile(file.getName(), outputStream);
					outputStream.close();
				}
			}
			
			ftpClient.logout();
			isSuccessed=true;
		} catch (Exception e) {
			// TODO: handle exception
			e.printStackTrace();
		}finally{
			if(ftpClient.isConnected()){
				try {
					ftpClient.disconnect();
				} catch (Exception e2) {
					// TODO: handle exception
					e2.printStackTrace();
				}
			}
		}
		return isSuccessed;
	}
}

 

   测试代码:

package com.wjy.FTPClient;


public class TestFtpTransmission {
	

/**
 * ftp上传测试
 */
	public static void main(String args[]){
		FtpTransmission ftpTransmission=new FtpTransmission("10.13.30.71", "wjy", "123", ".", 21);
		boolean flag=ftpTransmission.fileUpload("43.txt", "E://43.txt");
		if(flag){
			System.out.println("Yes.");
		}
		else{
			System.out.println("No.");
		}
		}
	
	
/**
 * ftp下载测试	
 */
//	public static void main(String args[]){
//		FtpTransmission ftpTransmission=new FtpTransmission("10.13.30.71", "wjy", "123", ".", 21);
//		boolean flag=ftpTransmission.fileDownload("yy.txt","E://WBD");	
//		if(flag){
//			System.out.println("Yes.");
//		}
//		else{
//			System.out.println("No.");
//		}
//	}
	
	
}

   FTPClient使用到的jia包我也上传到附件中。

分享到:
评论

相关推荐

    java+ftpServer+derby+ActiveMQ

    首先,Java FTPServer指的是使用Java语言实现的FTP服务器。FTP(文件传输协议)是一种标准网络协议,用于在客户端和服务器之间交换文件。Java FTPServer允许开发者用Java编程语言构建自己的FTP服务,提供高度自定义...

    Android开发 FTP服务器测试demo

    这是一个轻量级、可扩展的Java FTP服务器实现,适用于各种项目,包括嵌入式系统和移动平台如Android。在Android项目中引入Apache FtpServer,需要将`libs`文件夹下的相关`.jar`包(如`mina-core.jar`、`ftpserver-...

    ftp文件传输.zip

    在Java中,实现FTP服务器较为复杂,通常不直接编写,而是使用第三方库如Jserv,或者嵌入式服务器如Jetty。然而,如果你在`ServerFTP.java`中看到代码,这可能意味着它是在模拟一个简单的FTP服务,用于教学目的。关键...

    专题资料(2021-2022年)linux系统网络服务器架设.doc

    Linux不仅用于个人计算机,还广泛应用于服务器、移动设备、超级计算机以及嵌入式系统中。Linux发行版众多,其中Red Hat Enterprise Linux(RHEL)是企业级应用中非常流行的一种。 【Red Hat Enterprise Linux 5的...

    常用的web服务器软件有哪些.doc

    Python也是一个常用的实现Web服务器的语言,如cdServer用于CD-ROM内容提供,edna是用Python编写的MP3服务器,而Perl也有dhttpd这样的轻量级服务器,支持CGI和多种高级功能。 这些轻量级服务器虽然规模较小,但它们...

    轻量级Web服务器选择

    - ZWS是一个使用500多行带注释的zsh实现的轻量级Web服务器,展示了即使在简单的脚本语言中也能构建强大的Web服务。 #### 五、高性能轻量级Web服务器 - **cghttpd**:这是一个小型Web服务器,用于测试2.6系列内核...

    搭建电影服务器

    你可以使用FTP工具如FileZilla进行文件传输。 五、设置访问权限和防火墙规则 确保Nginx服务能够访问电影文件,并配置防火墙规则允许外部连接到RTMP端口(默认1935)和HTTP端口(如80)。 六、测试与发布 使用VLC...

    Java与JEE架构-第章概述完美版资料.ppt

    为了扩展Web服务器的功能,JEE引入了Servlet和JSP(JavaServer Pages)技术。Servlet是服务器端的Java程序,处理HTTP请求,而JSP则结合了HTML和Java代码,方便在服务器端生成动态内容。 J2EE还定义了一组API,如...

    java面试知识

    - **Java 8及以后**:推荐使用java.time包下的类,如LocalDateTime、Instant等。 ##### 阶乘 - **定义**:一个正整数n的阶乘(n!)是从1乘到n的所有正整数的乘积。 - **递归实现**:`n * factorial(n - 1)`。 ###...

    自整理Java关于基础和框架的面试题

    - SSI(Server Side Includes)是一种简单的模板引擎,用于在服务器端插入文本、脚本等。 ##### SSH整合 - **SSH**:Struts + Spring + Hibernate,一种常用的Java Web开发框架组合。 - 实现了MVC模式,并提供了...

    经典嵌入式面试题.docx

    - **Server API**:Apache 2.0 Handler,表明此PHP环境是作为Apache服务器的一个模块运行。 - **Virtual Directory Support**:禁用虚拟目录支持。 - **Configuration File Path**:PHP配置文件(php.ini)的基本...

    linux教学大纲

    - **深化服务器操作系统理解**:在已有Windows Server学习基础上,进一步加深对服务器操作系统管理和配置的理解与实践。 - **核心技能培养**: - 掌握Linux操作系统的基本安装与配置、命令行操作等。 - 熟练进行...

    教材习题及解析.pdf

    3. **ApacheTomcat服务器默认使用的通信端口是____。** - **B.8080**。Tomcat默认监听端口为8080,这是其配置文件`server.xml`中的默认设置。 4. **MySQL数据库服务器默认使用的通信端口是____。** - **D.3306*...

    IIS.rar_iis

    **IIS(Internet Information Services)** 是微软公司提供的一个用于发布Web应用程序的服务器软件,它包含在Windows操作系统中,特别是Windows Server系列。IIS作为Web服务器,能够处理HTTP、HTTPS、FTP、SMTP等...

    openwrt建mysqlPHP网站的安装配置.zip

    如果你有一个名为`your_website`的网站,可以使用FTP客户端(如FileZilla)将其上传到`/www/your_website`。 最后,确保你的路由器端口转发设置正确,允许外部访问Web服务。在OpenWrt的LuCI界面或通过CLI配置`/etc/...

    pcre-8.36.tar.gz

    在各种编程语言和应用中,PCRE被广泛使用,如PHP、Apache HTTP Server以及我们的例子中提到的vsftpd服务器。 标题中的"pcre-8.36.tar.gz"表明这是一个版本号为8.36的PCRE库的源代码包,采用tar和gzip格式进行压缩。...

    MySQL 5.5 Windows安装详解

    - **Server Machine(服务器)**:适用于运行其他应用程序(如FTP、Email、Web服务器等)的服务器,MySQL服务器将适当地使用系统资源。 - **Dedicated MySQL Server Machine(专用MySQL服务器)**:适用于仅运行MySQL...

    linux基本操作

    - **常用FTP Server**:如vsftpd和tftp,用于文件传输。 - **tftp**:简单文件传输协议,常用于嵌入式设备的固件更新。 - **vsftpd**:安全的FTP服务器,支持匿名和验证访问。 5. **CVS服务**: - **软件配置...

Global site tag (gtag.js) - Google Analytics