0

0

ftp上传实例代码

PHP中文网

PHP中文网

发布时间:2017-06-20 09:51:25

|

1604人浏览过

|

来源于php中文网

原创

/**
* ftp上传工具类
*
*/
public class ftputil {
static logger logger = logger.getlogger(ftputil.class.getname());
   private string ip;
   private string username;
   private string password;
   private int port = -1;
   private string path;
   private outputstream os = null;
   private fileinputstream is = null;
private ftpclient ftpclient;
public ftpclient getftpclient() { return ftpclient; }
public void setftpclient(ftpclient ftpclient) {
this.ftpclient = ftpclient;
}
public ftputil(){

}
public ftputil(string serverip, string username, string password) {
 this.ip = serverip;
 this.username = username;
 this.password = password;
}

public ftputil(string serverip, int port, string username, string password) {
 this.ip = serverip;
 this.username = username;
 this.password = password;
 this.port = port;
 this.ftpclient= new ftpclient();
}
/**
 *
 * @return 是否连接服务器
 */
public boolean ftplogin() {  
boolean islogin = false;  
ftpclientconfig ftpclientconfig = new ftpclientconfig();  
ftpclientconfig.setservertimezoneid(timezone.getdefault().getid());  
this.ftpclient.setcontrolencoding("gbk");  
this.ftpclient.configure(ftpclientconfig);  
try {    
if (this.port > 0) {    
this.ftpclient.connect(this.ip, this.port);    
}else {    
this.ftpclient.connect(this.ip);    
}  
int reply = this.ftpclient.getreplycode();    
if (!ftpreply.ispositivecompletion(reply)) {    
this.ftpclient.disconnect();
logger.info("登录ftp服务失败!");  
return islogin;    
}    
if(this.ftpclient.login(this.username, this.password)){
this.ftpclient.enterlocalpassivemode(); // 设置传输协议        
this.ftpclient.setfiletype(ftpclient.binary_file_type);
logger.info(this.username + "成功登陆ftp服务器");  
islogin = true;
}else{
logger.info(this.username + "登录ftp服务失败!");
}
}catch (exception e) {    
e.printstacktrace();  
logger.error( e.getmessage());  
}  
this.ftpclient.setbuffersize(1024 * 2);  
this.ftpclient.setdatatimeout(30 * 1000);  
return islogin;  
}
/**  
* @退出关闭服务器链接    
*/  
public void ftplogout() {  
if (null != this.ftpclient && this.ftpclient.isconnected()) {    
try {    
boolean reuslt = this.ftpclient.logout();// 退出ftp服务器      
if (reuslt) {  
logger.info("成功退出服务器");  
}    
}catch (ioexception e) {    
e.printstacktrace();  
logger.warn("退出ftp服务器异常!" + e.getmessage());    
}finally {    
try {      
this.ftpclient.disconnect();
}catch (ioexception e) {      
e.printstacktrace();
logger.error("关闭ftp服务器的连接异常!");    
}    
}  
}  
}
/**  
* 上传ftp文件    
* @param localfile           当地文件  
* @param romotuploadepath    上传服务器路径    
*/  
public boolean uploadfile(file localfile, string romotuploadepath) {  
bufferedinputstream instream = null;  
boolean success = false;  
try {    
this.ftpclient.changeworkingdirectory(romotuploadepath);
instream = new bufferedinputstream(new fileinputstream(localfile));  
success = this.ftpclient.storefile(localfile.getname(), instream);    
if (success == true) {  
system.out.println(localfile.getname() + "上传成功");///
return success;    
}  
}catch (filenotfoundexception e) {    
e.printstacktrace();  
}catch (ioexception e) {    
e.printstacktrace();  
}finally {    
if (instream != null) {    
try {      
instream.close();    
}catch (ioexception e) {      
e.printstacktrace();    
}    
}  
}  
return success;  
}  

/**上传文件夹    
* @param localdirectory       本地文件夹      
* @param remotedirectorypath  远程路径
*/  
public boolean uploaddirectory(string localdirectory,string remotedirectorypath) {  
file src = new file(localdirectory);  
system.out.println(src.getname());
try {    
remotedirectorypath = remotedirectorypath + src.getname() + "/";    
boolean makedirflag = ftpclient.makedirectory(remotedirectorypath);    
system.out.println("localdirectory : " + localdirectory);    
system.out.println("remotedirectorypath : " + remotedirectorypath);    
system.out.println("src.getname() : " + src.getname());    
system.out.println("remotedirectorypath : " + remotedirectorypath);    
system.out.println("makedirflag : " + makedirflag);  
// ftpclient.listdirectories();  
}catch (ioexception e) {    
e.printstacktrace();
}  
file[] allfile = src.listfiles();
if(allfile.length==0||allfile.length>0){
for (int currentfile = 0;currentfile if (!allfile[currentfile].isdirectory()) {    
string srcname = allfile[currentfile].getpath().tostring();    
uploadfile(new file(srcname), remotedirectorypath);    
}
}  
for (int currentfile = 0;currentfile if (allfile[currentfile].isdirectory()) {
uploaddirectory(allfile[currentfile].getpath().tostring(),  //递归      
remotedirectorypath);    
}  
}  
}
/*for (int currentfile = 0;currentfile if (!allfile[currentfile].isdirectory()) {    
string srcname = allfile[currentfile].getpath().tostring();    
uploadfile(new file(srcname), remotedirectorypath);    
}
}  
for (int currentfile = 0;currentfile if (allfile[currentfile].isdirectory()) {
uploaddirectory(allfile[currentfile].getpath().tostring(),  //递归      
remotedirectorypath);    
}  
}   */
return true;  
}  

热门AI工具

更多
DeepSeek
DeepSeek

幻方量化公司旗下的开源大模型平台

豆包大模型
豆包大模型

字节跳动自主研发的一系列大型语言模型

通义千问
通义千问

阿里巴巴推出的全能AI助手

腾讯元宝
腾讯元宝

腾讯混元平台推出的AI助手

文心一言
文心一言

文心一言是百度开发的AI聊天机器人,通过对话可以生成各种形式的内容。

讯飞写作
讯飞写作

基于讯飞星火大模型的AI写作工具,可以快速生成新闻稿件、品宣文案、工作总结、心得体会等各种文文稿

即梦AI
即梦AI

一站式AI创作平台,免费AI图片和视频生成。

ChatGPT
ChatGPT

最最强大的AI聊天机器人程序,ChatGPT不单是聊天机器人,还能进行撰写邮件、视频脚本、文案、翻译、代码等任务。

相关专题

更多
C++ 设计模式与软件架构
C++ 设计模式与软件架构

本专题深入讲解 C++ 中的常见设计模式与架构优化,包括单例模式、工厂模式、观察者模式、策略模式、命令模式等,结合实际案例展示如何在 C++ 项目中应用这些模式提升代码可维护性与扩展性。通过案例分析,帮助开发者掌握 如何运用设计模式构建高质量的软件架构,提升系统的灵活性与可扩展性。

4

2026.01.30

c++ 字符串格式化
c++ 字符串格式化

本专题整合了c++字符串格式化用法、输出技巧、实践等等内容,阅读专题下面的文章了解更多详细内容。

2

2026.01.30

java 字符串格式化
java 字符串格式化

本专题整合了java如何进行字符串格式化相关教程、使用解析、方法详解等等内容。阅读专题下面的文章了解更多详细教程。

1

2026.01.30

python 字符串格式化
python 字符串格式化

本专题整合了python字符串格式化教程、实践、方法、进阶等等相关内容,阅读专题下面的文章了解更多详细操作。

1

2026.01.30

java入门学习合集
java入门学习合集

本专题整合了java入门学习指南、初学者项目实战、入门到精通等等内容,阅读专题下面的文章了解更多详细学习方法。

20

2026.01.29

java配置环境变量教程合集
java配置环境变量教程合集

本专题整合了java配置环境变量设置、步骤、安装jdk、避免冲突等等相关内容,阅读专题下面的文章了解更多详细操作。

16

2026.01.29

java成品学习网站推荐大全
java成品学习网站推荐大全

本专题整合了java成品网站、在线成品网站源码、源码入口等等相关内容,阅读专题下面的文章了解更多详细推荐内容。

18

2026.01.29

Java字符串处理使用教程合集
Java字符串处理使用教程合集

本专题整合了Java字符串截取、处理、使用、实战等等教程内容,阅读专题下面的文章了解详细操作教程。

3

2026.01.29

Java空对象相关教程合集
Java空对象相关教程合集

本专题整合了Java空对象相关教程,阅读专题下面的文章了解更多详细内容。

6

2026.01.29

热门下载

更多
网站特效
/
网站源码
/
网站素材
/
前端模板

精品课程

更多
相关推荐
/
热门推荐
/
最新课程
Rust 教程
Rust 教程

共28课时 | 5.1万人学习

Vue 教程
Vue 教程

共42课时 | 7.4万人学习

PostgreSQL 教程
PostgreSQL 教程

共48课时 | 8.1万人学习

关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号