码迷,mamicode.com
首页 > 编程语言 > 详细

java/struts/Servlet文件下载与ftp文件下载

时间:2015-03-10 15:28:01      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:

1.前端代码

使用超链接到Struts的Action或Servlet

<a target="_blank" href="ftpFileAction!downloadFile.action?transUrl=ftp://10.0.2.1/tazi/a.xml">请点击下载</a>

2.后台代码 Action或Servlet

String s1=transUrl; // transUrl是前台接受的参数
s1=s1.substring(6);
s1=s1.substring(s1.indexOf("/"));
String fn=s1.substring(s1.lastIndexOf("/")+1);
String filepath=s1.substring(0,s1.lastIndexOf("/"));

response.setCharacterEncoding("gbk");
response.setContentType("application/octet-stream");                
response.addHeader("Content-Disposition", "attachment;filename=\"" + fn+ "\"");//response文件头中定义的filename包含的中文必须是原始的ISO-8859-1编码。

String filename=new String(fn.getBytes("ISO-8859-1"),"gbk");//程序中要使用的文件名,必须转换为gbk编码

boolean suc=false;
suc=downFileStream("10.0.2.1", 21,"myUser","myPwd", 
                        filepath, filename, os);//downFileStream是一个下载ftp文件到文件流的方法
if(!suc){
    response.reset();
    response.setCharacterEncoding("gbk");
    PrintWriter writer=new PrintWriter(os);
    writer.write("指定的文件不存在!");
    writer.close();
}else{
    os.close();
};
            

3.ftp文件下载处理

注意这里引入的包是

org.apache.commons.net.ftp.*

  (1).下载到本地

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

public static 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);// 登录
        reply = ftp.getReplyCode();
        if (!FTPReply.isPositiveCompletion(reply)) {
            ftp.disconnect();
            return success;
        }
        ftp.changeWorkingDirectory(remotePath);// 转移到FTP服务器目录
        FTPFile[] fs = ftp.listFiles();
        boolean ftpFileExist=false;
        for (FTPFile ff : fs) {
            if (ff.getName().equals(fileName)) {
                ftpFileExist=true;
                File dir = new File(localPath);
                if(!dir.exists()){
                    dir.mkdirs();
                }
                File localFile = new File(localPath + File.separator + ff.getName());
                OutputStream is = new FileOutputStream(localFile,true);
                ftp.setBufferSize(1024);
                if(ftp.setFileType(FTP.BINARY_FILE_TYPE)){
                    ftp.retrieveFile(ff.getName(), is);
                    is.close();
                }
            }
        }
        ftp.logout();
        if(ftpFileExist){
            success = true;
        }
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        if (ftp.isConnected()) {
            try {
                ftp.disconnect();
            } catch (IOException ioe) {
            }
        }
    }
    return success;
}

 

  (2).下载到文件输出流 OutputStream

public static boolean downFileStream(String url, // FTP服务器hostname
        int port,// FTP服务器端口
        String username, // FTP登录账号
        String password, // FTP登录密码
        String remotePath,// FTP服务器上的相对路径
        String fileName,// 要下载的文件名
        OutputStream os
) {
    boolean success = false;
    FTPClient ftp = new FTPClient();
    try {
        int reply;
        ftp.connect(url, port);
        // 如果采用默认端口,可以使用ftp.connect(url)的方式直接连接FTP服务器
        ftp.login(username, password);// 登录
        reply = ftp.getReplyCode();
        if (!FTPReply.isPositiveCompletion(reply)) {
            ftp.disconnect();
            return false;
        }
        ftp.changeWorkingDirectory(remotePath);// 转移到FTP服务器目录
        FTPFile[] fs = ftp.listFiles();
        boolean ftpFileExist=false;
        for (FTPFile ff : fs) {
            String ffName=new String(ff.getName().getBytes("ISO-8859-1"),"gbk");
            if (ffName.equals(fileName)) {
                ftpFileExist=true;
                ftp.setBufferSize(1024);
                if(ftp.setFileType(FTP.BINARY_FILE_TYPE)){
                    ftp.retrieveFile(ff.getName(), os);
                }
            }
        }
        ftp.logout();
        if(ftpFileExist){
            success = true;
        }
    } catch (IOException e) {
        e.printStackTrace();
    } finally {
        if (ftp.isConnected()) {
            try {
                ftp.disconnect();
            } catch (IOException ioe) {
            }
        }
    }
    return success;
}

 

java/struts/Servlet文件下载与ftp文件下载

标签:

原文地址:http://www.cnblogs.com/tazi/p/4326042.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!