遍历、显示ftp下的文件夹和文件信息

标签: 遍历 ftp 文件夹 | 发表时间:2013-08-20 15:54 | 作者:cl05300629
出处:http://blog.csdn.net

今天做了通过ftp读取ftp根目录下的所有文件夹和文件,嵌套文件夹查询,总共用到了一下代码:

1、FtpFile_Directory 

package com.hs.dts.web.ftp;

import java.io.IOException;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;

import org.apache.log4j.LogManager;
import org.apache.log4j.Logger;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;

@Controller
@RequestMapping(value = "ftp")
public class FtpFile_Directory {

private Logger logger = LogManager.getLogger(FtpFile_Directory.class);

@Autowired
private ListMapFtp listMapFtp;
@Autowired
private DownloadFtp downloadFtp;

@RequestMapping(value = "showList")
@ResponseBody
public Map<String, Object> showList(HttpServletRequest request,
HttpServletResponse response) throws IOException {
HttpSession session = request.getSession();
String remotePath = request.getParameter("remotePath");// 获得当前路径
if (remotePath != null) {
logger.debug("remotePath--->" + remotePath);
session.setAttribute("sessionPath", remotePath);// 将当前路径保存到session中
}
if (remotePath == null) {
remotePath = "";
}
String filename = request.getParameter("filename");// 获得当前文件的名称
if (filename != null) {
logger.debug("filename:---> " + filename);
}
List<List<DtsFtpFile>> list = listMapFtp.showList("192.168.50.23", 21,
"admin", "123456", remotePath);// 获得ftp对应路径下的所有目录和文件信息
List<DtsFtpFile> listDirectory = list.get(0);// 获得ftp该路径下的所有目录信息
List<DtsFtpFile> listFile = list.get(1);// 获得ftp该路径下所有的文件信息


Map<String, Object> modelMap = new HashMap<String, Object>();
if (remotePath != null && filename == null) {// 如果前台点击的是目录则显示该目录下的所有目录和文件
modelMap.put("listDirectory", listDirectory);
modelMap.put("listFile", listFile);
} else if (filename != null) {// 如果前台点击的是文件,则下载该文件
String sessionPath = (String) session.getAttribute("sessionPath");// 获得保存在session中的当前路径信息
downloadFtp.downFile("192.168.50.23", 21, "admin", "123456",
sessionPath, filename, "D:/test/download/");
}
return modelMap;
}

@RequestMapping(value = "directJsp")
public String directJsp() {
logger.debug("--->into ftp/ftp-list.jsp");
return "ftp/ftp-list";
}
}

2、ListMapFtp 

package com.hs.dts.web.ftp;

import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.List;

import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPFile;
import org.apache.commons.net.ftp.FTPReply;
import org.apache.log4j.LogManager;
import org.apache.log4j.Logger;
import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.Transactional;

@Component("listMapFtp")
@Transactional
public class ListMapFtp {

private Logger logger = LogManager.getLogger(FtpFile_Directory.class);

public List<List<DtsFtpFile>> showList(String hostname, int port,
String username, String password, String pathname)
throws IOException {
FTPClient ftpClient = new FTPClient();
List<DtsFtpFile> listFile = new ArrayList<DtsFtpFile>();
List<DtsFtpFile> listDirectory = new ArrayList<DtsFtpFile>();
List<List<DtsFtpFile>> listMap = new ArrayList<List<DtsFtpFile>>();

SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
try {
int reply;
// 创建ftp连接
ftpClient.connect(hostname, port);
// 登陆ftp
ftpClient.login(username, password);
// 获得ftp反馈,判断连接状态
reply = ftpClient.getReplyCode();
if (!FTPReply.isPositiveCompletion(reply)) {
ftpClient.disconnect();
}
// 切换到指定的目录
ftpClient.changeWorkingDirectory(pathname + "/");

// 获得指定目录下的文件夹和文件信息
FTPFile[] ftpFiles = ftpClient.listFiles();

for (FTPFile ftpFile : ftpFiles) {
DtsFtpFile dtsFtpFile = new DtsFtpFile();
// 获取ftp文件的名称
dtsFtpFile.setName(ftpFile.getName());
// 获取ftp文件的大小
dtsFtpFile.setSize(ftpFile.getSize());
// 获取ftp文件的最后修改时间
dtsFtpFile.setLastedUpdateTime(formatter.format(ftpFile
.getTimestamp().getTime()));
if (ftpFile.getType() == 1 && !ftpFile.getName().equals(".")
&& !ftpFile.getName().equals("..")) {
// mapDirectory.put(ftpFile.getName(),
// pathname+"/"+ftpFile.getName());
// 获取ftp文件的当前路劲
dtsFtpFile.setLocalPath(pathname + "/" + ftpFile.getName());
listDirectory.add(dtsFtpFile);
} else if (ftpFile.getType() == 0) {
// mapFile.put(ftpFile.getName(),ftpFile.getName());
dtsFtpFile.setLocalPath(pathname + "/");
listFile.add(dtsFtpFile);
}
// System.out.println("Name--->"+ftpFile.getName()+"\tTimestamp--->"+ftpFile.getTimestamp().getTime()+"\tsize--->"+ftpFile.getSize());
// double fileSize = (double) ftpFile.getSize();
// if(fileSize/(1024*1024*1024)>1){
// System.out.println(ftpFile.getName()+" size is "+df.format(fileSize/(1024*1024*1024))+"GB");
// }else if(fileSize/(1024*1024)>1){
// System.out.println(ftpFile.getName()+" size is "+df.format(fileSize/(1024*1024))+"MB");
// }else if(fileSize/1024>1){
// System.out.println(ftpFile.getName()+" size is "+df.format(fileSize/1024)+"KB");
// }else if(fileSize/1024<1){
// System.out.println(ftpFile.getName()+" size is "+ftpFile.getSize()+"B");
// }
}
listMap.add(listDirectory);
listMap.add(listFile);
ftpClient.logout();
} finally {
if (ftpClient.isConnected()) {
try {
ftpClient.disconnect();
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
}
return listMap;
}
}

3、DownloadFtp 

package com.hs.dts.web.ftp;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
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;
import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.Transactional;
@Component("downloadFtp")
@Transactional
public class DownloadFtp {

/**
* Description:从ftp服务器下载文件 version1.0

* @param url
*            FTP服务器hostname
* @param port
*            FTP服务器端口
* @param username
*            FTP登陆账号
* @param password
*            FTP登陆密码
* @param path
*            FTP服务器上的相对路径
* @param filename
*            要下载的文件名
* @return 成功返回true,否则返回false
*/
public boolean downFile(String url,// FTP服务器hostname
int port,// FTP服务器端口
String username,// FTP登陆账号
String password,// FTP登陆密码
String remotePath,// FTP服务器上的相对路径
String fileName,// 要下载的文件名
String localPath// 下载后保存到本地的路劲
) {
boolean success = false;
FTPClient ftp = new FTPClient();
try {
int reply;
ftp.connect(url, port);
// 如果采用端口默认,可以使用ftp.connect(url)的方式直接连接FTP服务器
ftp.login(username, password);// 登陆
// System.out.println("login!");
reply = ftp.getReplyCode();
// System.out.println("reply:" + reply);
if (!FTPReply.isPositiveCompletion(reply)) {
ftp.disconnect();
return success;
}
ftp.changeWorkingDirectory(remotePath+"/");// 转移到FTP服务器目录
FTPFile[] fs = ftp.listFiles();
for (FTPFile ff : fs) {
// System.out.println("名称:"+ff.getName()+"类型:"+ff.getType());
if (ff.getName().equals(fileName)) {
File localFile = new File(localPath + '/' + ff.getName());
OutputStream os = new FileOutputStream(localFile);
ftp.retrieveFile(ff.getName(), os);
os.close();
}
}
System.out.println("upload success!");
ftp.logout();
// System.out.println("logout!");
success = true;
} catch (IOException e) {
e.printStackTrace();
} finally {
if (ftp.isConnected()) {
try {
ftp.disconnect();
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
}
return success;
}
}

4、DtsFtpFile 

package com.hs.dts.web.ftp;

public class DtsFtpFile {
private String name;
private long size;
private String lastedUpdateTime;
private String localPath;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public long getSize() {
return size;
}
public void setSize(long size) {
this.size = size;
}
public String getLastedUpdateTime() {
return lastedUpdateTime;
}
public void setLastedUpdateTime(String lastedUpdateTime) {
this.lastedUpdateTime = lastedUpdateTime;
}
public String getLocalPath() {
return localPath;
}
public void setLocalPath(String localPath) {
this.localPath = localPath;
}
}

5、jsp页面

<%@ page contentType="text/html;charset=UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<c:set var="ctx" value="${pageContext.request.contextPath}" />
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8"/>
<title>Insert title here</title>
<script type="text/javascript" src="${ctx}/static/jquery/1.7.2/jquery.js"></script>
<script type="text/javascript">
var ctx = '${ctx}';
}
</script>
 <script type="text/javascript" src="${ctx}/static/js/ftp/ftp.js">
</script>
<style type="text/css">
 a:link {
    text-decoration:none;
    }
    a:hover {
    text-decoration:underline;
    }
</style>
</head>
<body>
    <div id="rootDirectory">
    <a onclick='showList(this.id)' href='#' style='color:red;' id='${ctx}/ftp/showList?remotePath='>根目录</a><br/><br/>
    </div>
    <div id="container"></div>
</body>
</html>

6、脚本文件

Ext.onReady(function(){
showList(ctx+'/ftp/showList');
});
function showList(url){
Ext.Ajax.request({
        url : url,
        method:'post',
        async:false,  
        success : function(response) {
        var listDirectory = Ext.util.JSON.decode(response.responseText).listDirectory;
        var listFile = Ext.util.JSON.decode(response.responseText).listFile;
        $("#container").empty();
        for(var i = 0;i<listDirectory.length;i++){
        $("#container").append("<img src="+ctx+"/static/images/ftp/directory.jpg width='25px' height='25px'>&nbsp<a onclick='showList(this.id)' href='#' style='color:blue' name ='"+listDirectory[i].localPath+" 'id='"+ctx+"/ftp/showList?remotePath="+listDirectory[i].localPath+"'>"+listDirectory[i].name+"</a><br/>");
        }
        for(var i = 0;i<listFile.length;i++){
        $("#container").append("<img src="+ctx+"/static/images/ftp/file.jpg width='25px' height='25px'>&nbsp<a onclick='showList(this.id)' href='#' style='color:green' id='"+ctx+"/ftp/showList?filename="+listFile[i].name+"'>"+listFile[i].name+"</a><br/>");
        }
        }
    });
}

7、登陆页面显示效果如下:


出处: http://blog.csdn.net/cl05300629/article/details/10110991 作者:伫望碧落

作者:cl05300629 发表于2013-8-20 15:54:45 原文链接
阅读:69 评论:0 查看评论

相关 [遍历 ftp 文件夹] 推荐:

遍历、显示ftp下的文件夹和文件信息

- - CSDN博客Web前端推荐文章
今天做了通过ftp读取ftp根目录下的所有文件夹和文件,嵌套文件夹查询,总共用到了一下代码:. String remotePath = request.getParameter("remotePath");// 获得当前路径. session.setAttribute("sessionPath", remotePath);// 将当前路径保存到session中.

用wget同步ftp

- - 天空极速
wget 可以下载整个网站或者ftp. 如果有两个ftp站点,需要同步,可以使用以下命令:. 解释下,前面是ftp的授权用户,密码,ftp的站点,端口. -r 是表示递归,-x表示强制创建目录,-c表示断点续传. Tags - windows , wget , ftp , 备份 , 同步.

ftp自动下载

- - 运维技术的个人空间

FTP之PASV与PORT

- - 行业应用 - ITeye博客
FTP是File Transfer Protocol(文件传输协议)的缩写,用来在两台计算机之间互相传送文件. 相比于HTTP,FTP协议要复杂得多. 复杂的原因,是因为FTP协议要用到两个TCP连接,一个是命令链路,用来在FTP客户端与服务器之间传递命令;另一个是数据链路,用来上传或下载数据. FTP协议有两种工作方式:PORT方式和PASV方式,中文意思为主动式和被动式.

Linux下自动FTP脚本

- - ITeye博客
前面写了一个Windows下自动FTP的脚本:. 今天新增Linux下的简单脚本,还待优化. 已有 0 人发表留言,猛击->> 这里<<-参与讨论. —软件人才免语言低担保 赴美带薪读研.

(转)ftp的port和pasv模式

- - 非技术 - ITeye博客
转自:http://hi.baidu.com/xianyang1981/item/20d68be050a50aaccf2d4f8e. 一、ftp的port和pasv模式的工作方式.        FTP使用2个TCP端口,首先是建立一个命令端口(控制端口),然后再产生一个数据端口. 国内很多教科书都讲ftp使用21命令端口和20数据端口,这个应该是教书更新太慢的原因吧.

FTP/SFTP/SSH的一些软件包

- - 开源软件 - ITeye博客
IIS,Windows自带,可以到[打开或关闭windows功能]里选择IIS,进行安装. freeSSHd ,支持FTP/SFTP/SSH. OpenSSH这个是Linux上的SSH标配,Windows上则可以通过cygwin的方式来安装. FileZilla,支持SFTP. WinSCP,支持SFTP.

Mozilla FTP Firefox 6 RC目录疑似正式版泄漏

- Alise Scott Ng - cnBeta.COM
记得Firefox 5 final发布前夕是以FTP泄露,这次Firefox 6 Final难道也是故伎重演. FTP上的安装文件虽然在RC目录,却已经包含各平台各语种版本,相信如无重大bug,这个应该就是最终版了.

使用 Socket 通信实现 FTP 客户端程序

- xcv58 - IBM developerWorks 中国 : Linux : Articles,Tutorials
FTP 客户端如 FlashFXP,File Zilla 被广泛应用,原理上都是用底层的 Socket 来实现. FTP 客户端与服务器端进行数据交换必须建立两个套接字,一个作为命令通道,一个作为数据通道. 前者用于客户端向服务器发送命令,如登录,删除某个文件,后者用于接收数据,例如下载或上传文件等.

java实现把文件上传至ftp服务器

- - CSDN博客互联网推荐文章
用java实现ftp文件上传. 我使用的是commons-net-1.4.1.zip. 其中包含了众多的java网络编程的工具包. 1 把commons-net-1.4.1.jar包加载到项目工程中去. * Description: 向FTP服务器上传文件. * @param url FTP服务器hostname.