ftp uploadFileAction(重要)
TelnetOUtputStream os = ftpClient.put(filename);
File file_in = new File(localPath);
FileInputStream is = new FileInputStream(file_in);
byte[] bytes = new byte[1024];
- /**
- * FTP文件上传与下载
- * notice:
- * 之所以每次都要连接一次ftp是让它的目录重新返回到相对的根目录,
- * 如果复用上次的FtpClient则可能它当前在FTP的目录不是我们想要的
- * 目录,所以在FTP上传下载文件时,最好每次都重新登录一下FTP
- * @author lgh
- */
- public class FTPClient {
- private FtpClient ftpClient;
- private String ip;
- private int port;
- private String username;
- private String password;
- public FTPClient() {
- }
- public FTPClient(String ip, int port, String username, String password) {
- this.ip = ip;
- this.port = port;
- this.username = username;
- this.password = password;
- }
- /**
- * 需要备份的文件
- * @param list
- * @return
- */
- private List needBackFile(List list, String relativeName) {
- List fileNames = new ArrayList();
- for (int i = 0; i < list.size(); i++) {
- String temp = (String) list.get(i);
- if (temp.indexOf(relativeName) > 0) {
- fileNames.add(temp);
- }
- }
- return fileNames;
- }
- public static void main(String[] args) {
- FTPClient client = new FTPClient(".....", 21, "...", "....");
- try {
- // client.downloadFile("CRM/ccbcrm/", "D://", "CRMClientLog.log", "CRMClientLog.log");
- // client.uploadFile("", "D://", "CRMClientLog.log");
- List list = client.getList("csrtestftp/网络/", false);
- } catch (Exception ex) {
- Logger.getLogger(FTPClient.class.getName()).log(Level.SEVERE, null, ex);
- }
- }
- /**
- * 关闭FTP连接
- * @throws java.lang.Exception
- */
- public void closeServer() throws Exception {
- ftpClient.closeServer();
- }
- /**
- * 连接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) {
- ex.printStackTrace();
- }
- return isSuccess;
- }
- /**
- * 获得远程下的目录
- * @param remotePath 远程目录
- * @param fullPath 是否需要完整路径
- * @return
- */
- public List getList(String remotePath, boolean fullPath) {
- List list = new ArrayList();
- try {
- if (connectServer(ip, port, username, password)) {
- BufferedReader br = new BufferedReader(new InputStreamReader(ftpClient.nameList(remotePath)));
- String temp = ftpClient.getResponseString();
- System.out.println(temp);
- String readLine = null;
- int lastIndex;
- if ((lastIndex = remotePath.lastIndexOf("/")) > 0||(lastIndex = remotePath.lastIndexOf("//")) > 0
- ||(lastIndex = remotePath.lastIndexOf("\\")) > 0||(lastIndex = remotePath.lastIndexOf(File.separator)) > 0) {
- remotePath = remotePath.substring(0, lastIndex);
- } //去掉remotePath的后缀,可能是'/',也有可能是其他符号
- while ((readLine = br.readLine()) != null) {
- if (!fullPath) {
- list.add(readLine.substring(remotePath.length() + 1, readLine.length()));
- System.out.println(readLine.substring(remotePath.length() + 1, readLine.length()));
- } else {
- list.add(readLine);
- System.out.println(readLine);
- }
- }
- ftpClient.closeServer();
- }
- } catch (Exception ex) {
- ex.printStackTrace();
- }
- return list;
- }
- /**
- * 下载文件
- * @param remotePath
- * @param localPath
- * @param filename
- * @throws Exception
- */
- public void downloadFile(String remotePath, String localPath, String remoteFileName, String localFileName) throws Exception {
- try {
- if (connectServer(ip, port, username, password)) {
- if (remotePath.length() != 0) {
- ftpClient.cd(remotePath);
- }
- ftpClient.binary();
- TelnetInputStream is = ftpClient.get(remoteFileName);
- File fp = new File(localPath);
- if (!fp.exists()) {
- fp.mkdirs();
- }
- File file_out = new File(localPath + File.separator + localFileName);
- FileOutputStream os = new FileOutputStream(file_out);
- byte[] bytes = new byte[1024];
- int readBye;
- while ((readBye = is.read(bytes)) != -1) {
- os.write(bytes, 0, readBye);
- }
- is.close();
- os.close();
- ftpClient.closeServer();
- }
- } catch (Exception ex) {
- ex.printStackTrace();
- }
- }
- /**
- * 上传文件
- * @param remotePath
- * @param localPath
- * @param filename
- * @throws Exception
- */
- public void uploadFile(String remotePath, String localPath, String filename) throws Exception {
- try {
- if (connectServer(ip, port, username, password)) {
- 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 readBye;
- while ((readBye = is.read(bytes)) != -1) {
- os.write(bytes, 0, readBye);
- }
- is.close();
- os.close();
- ftpClient.closeServer();
- }
- } catch (Exception ex) {
- ex.printStackTrace();
- }
- }
- /**
- * @return the ip
- */
- public String getIp() {
- return ip;
- }
- /**
- * @param ip the ip to set
- */
- public void setIp(String ip) {
- this.ip = ip;
- }
- /**
- * @return the port
- */
- public int getPort() {
- return port;
- }
- /**
- * @param port the port to set
- */
- public void setPort(int port) {
- this.port = port;
- }
- /**
- * @return the username
- */
- public String getUsername() {
- return username;
- }
- /**
- * @param username the username to set
- */
- public void setUsername(String username) {
- this.username = username;
- }
- /**
- * @return the password
- */
- public String getPassword() {
- return password;
- }
- /**
- * @param password the password to set
- */
- public void setPassword(String password) {
- this.password = password;
- }
- }
ftp uploadFileAction(重要)的更多相关文章
- 8.仿阿里云虚拟云服务器的FTP(包括FTP文件夹大小限制)
平台之大势何人能挡? 带着你的Net飞奔吧!:http://www.cnblogs.com/dunitian/p/4822808.html#iis 原文:http://dnt.dkill.net/Ar ...
- Hyper-V无法文件拖拽解决方案~~~这次用一个取巧的方法架设一个FTP来访问某个磁盘,并方便的读写文件
异常处理汇总-服 务 器 http://www.cnblogs.com/dunitian/p/4522983.html 服务器相关的知识点:http://www.cnblogs.com/dunitia ...
- 阿里云学生优惠Windows Server 2012 R2安装IIS,ftp等组件,绑定服务器域名,域名解析到服务器,域名备案,以及安装期间错误的解决方案
前言: 这几天终于还是按耐不住买了一个月阿里云的学生优惠.只要是学生,在学信网上注册过,并且支付宝实名认证,就可以用9块9的价格买阿里云的云服务ECS.确实是相当的优惠. 我买的是Windows S ...
- win7下利用ftp实现华为路由器的上传和下载
win7下利用ftp实现华为路由器的上传和下载 1. Win7下ftp的安装和配置 (1)开始->控制面板->程序->程序和功能->打开或关闭Windows功能 (2)在Wi ...
- Java实现FTP文件与文件夹的上传和下载
Java实现FTP文件与文件夹的上传和下载 FTP 是File Transfer Protocol(文件传输协议)的英文简称,而中文简称为"文传协议".用于Internet上的控制 ...
- centos下开启ftp服务
如果要ftp访问linux需要安装ftp服务,vsftpd是Linux下比较好的的FTP服务器. 一.检查安装vsftp //检查是否安装vsftpd rpm -qa | grep vsftpd // ...
- 解决开启服务器防火墙导致ftp不能连接的问题
在防火墙设置的"高级"选项卡中的"网络连接设置"--"本地连接"--"设置"中添加了"FTP服务器" ...
- centos6.5 nginx-1.8.0和ftp搭建图片服务器
一.Nginx的安装步骤 1.Nginx安装环境: gcc: 安装nginx需要先将官网下载的源码进行编译,编译依赖gcc环境,如果没有gcc环境,需要安装gcc:yum install gcc-c+ ...
- Jenkins配置MSBuild实现自动部署(MSBuild+SVN/Subversion+FTP+BAT)
所要用到的主要插件: [MSBuild Plugin] 具体操作: 1.配置MSBuild的版本 [系统管理]->[Global Tool Configuration]->[MSBuild ...
随机推荐
- Discuz! 6.x/7.x 版本 前台任意代码执行漏洞
一.漏洞原理: 由于php5.3.x版本里php.ini的设置里request_order默认值为GP,导致Discuz! 6.x/7.x 全局变量防御绕过漏洞. include/global.fun ...
- HTC VIVE SDK 中的例子 hellovr_opengl 程序流程分析
最近Vive的VR头盔设备很火,恰逢项目需求,所以对 SDK 中的例子 hellovr_opengl 做了比较细致的代码分析,先将流程图绘制如下,便于大家理解. 在ViVe头盔中实现立体效果的技术核心 ...
- unity GPU bound or CPU bound
unity判断GPU CPUbound android 用unity profiler 里面的cpu时间 xcode有直接的显示
- Scala实现冒泡排序、归并排序和快速排序
1.冒泡排序 def sort(list: List[Int]): List[Int] = list match { case List() => List() case head :: tai ...
- Unity3D教程宝典之Web服务器篇:(第一讲)服务器的架设
转载自风宇冲Unity3D教程学院 引言:本文主要介绍WAMP服务器的架设. 第一部分WAMP介绍;第二部分WAMP安装及使用. 第一部分WAMP介绍 什 ...
- c++解释--百度百科
c++ C++是在C语言的基础上开发的一种面向对象编程语言,应用广泛:C++支持多种编程范式 --面向对象编程.泛型编程和过程化编程.最新正式标准C++于2014年8月18日公布.[1] 其编程领域 ...
- c++ 银行管理系统及报告
1.题目描写叙述: 本代码为银行管理系统,总体分为管理员模式和普通用户模式: (1)在管理员模式中能完毕 ①用户信息录入 ②改动管理员password ③改动指定账户信息 ④信息管理业务 (2)在普通 ...
- Android - 错误:Unable to instantiate application
错误:Unable to instantiate application 本文地址: http://blog.csdn.net/caroline_wendy 错误:java.lang.RuntimeE ...
- hibernate 继承映射关系( JOINED)
一个主表,其他的表每个都有自己的表来装填自己特有的部分,共同的部分就放在主表中. package com.bjsxt.hibernate; import javax.persistence.Ent ...
- Spring 测试框架testContext代码举例
import javax.annotation.Resource; import org.junit.Test; import org.springframework.context.annotati ...