一区二区三区在线-一区二区三区亚洲视频-一区二区三区亚洲-一区二区三区午夜-一区二区三区四区在线视频-一区二区三区四区在线免费观看

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|Java教程|ASP教程|編程技術|正則表達式|C/C++|IOS|C#|Swift|Android|VB|R語言|JavaScript|易語言|vb.net|

服務器之家 - 編程語言 - Java教程 - Java利用apache ftp工具實現文件上傳下載和刪除功能

Java利用apache ftp工具實現文件上傳下載和刪除功能

2021-05-08 11:04悠悠-我心 Java教程

這篇文章主要為大家詳細介紹了Java利用apache ftp工具實現文件上傳下載、刪除功能,具有一定的參考價值,感興趣的小伙伴們可以參考一下

利用apache ftp工具實現文件的上傳下載和刪除,具體如下

1、下載相應的jar包

     commons-net-1.4.1.jar

2、實現代碼如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
public class ftputils {
    //ftp服務器地址
    public string hostname = "192.168.1.249";
    //ftp服務器端口號默認為21
    public integer port = 21 ;
    //ftp登錄賬號
    public string username = "root";
    //ftp登錄密碼
    public string password = "123";
     
    public ftpclient ftpclient = null;
     
    /**
     * 初始化ftp服務器
     */
    public void initftpclient() {
      ftpclient = new ftpclient();
      ftpclient.setcontrolencoding("utf-8");
      try {
        system.out.println("connecting...ftp服務器:"+this.hostname+":"+this.port); 
        ftpclient.connect(hostname, port); //連接ftp服務器
        ftpclient.login(username, password); //登錄ftp服務器
        int replycode = ftpclient.getreplycode(); //是否成功登錄服務器
        if(!ftpreply.ispositivecompletion(replycode)){
          system.out.println("connect failed...ftp服務器:"+this.hostname+":"+this.port); 
        }
        system.out.println("connect successfu...ftp服務器:"+this.hostname+":"+this.port); 
      }catch (malformedurlexception e) { 
        e.printstacktrace(); 
      }catch (ioexception e) { 
        e.printstacktrace(); 
      
    }
 
    /**
    * 上傳文件
    * @param pathname ftp服務保存地址
    * @param filename 上傳到ftp的文件名
    * @param originfilename 待上傳文件的名稱(絕對地址) *
    * @return
    */
    public boolean uploadfile( string pathname, string filename,string originfilename){
      boolean flag = false;
      inputstream inputstream = null;
      try{
        system.out.println("開始上傳文件");
        inputstream = new fileinputstream(new file(originfilename));
        initftpclient();
        ftpclient.setfiletype(ftpclient.binary_file_type);
        createdirecroty(pathname);
        ftpclient.makedirectory(pathname);
        ftpclient.changeworkingdirectory(pathname);
        ftpclient.storefile(filename, inputstream);
        inputstream.close();
        ftpclient.logout();
        flag = true;
        system.out.println("上傳文件成功");
      }catch (exception e) {
        system.out.println("上傳文件失敗");
        e.printstacktrace();
      }finally{
        if(ftpclient.isconnected()){ 
          try{
            ftpclient.disconnect();
          }catch(ioexception e){
            e.printstacktrace();
          }
        
        if(null != inputstream){
          try {
            inputstream.close();
          } catch (ioexception e) {
            e.printstacktrace();
          
        
      }
      return true;
    }
    /**
     * 上傳文件
     * @param pathname ftp服務保存地址
     * @param filename 上傳到ftp的文件名
     * @param inputstream 輸入文件流
     * @return
     */
    public boolean uploadfile( string pathname, string filename,inputstream inputstream){
      boolean flag = false;
      try{
        system.out.println("開始上傳文件");
        initftpclient();
        ftpclient.setfiletype(ftpclient.binary_file_type);
        createdirecroty(pathname);
        ftpclient.makedirectory(pathname);
        ftpclient.changeworkingdirectory(pathname);
        ftpclient.storefile(filename, inputstream);
        inputstream.close();
        ftpclient.logout();
        flag = true;
        system.out.println("上傳文件成功");
      }catch (exception e) {
        system.out.println("上傳文件失敗");
        e.printstacktrace();
      }finally{
        if(ftpclient.isconnected()){ 
          try{
            ftpclient.disconnect();
          }catch(ioexception e){
            e.printstacktrace();
          }
        
        if(null != inputstream){
          try {
            inputstream.close();
          } catch (ioexception e) {
            e.printstacktrace();
          
        
      }
      return true;
    }
    //改變目錄路徑
     public boolean changeworkingdirectory(string directory) {
        boolean flag = true;
        try {
          flag = ftpclient.changeworkingdirectory(directory);
          if (flag) {
           system.out.println("進入文件夾" + directory + " 成功!");
 
          } else {
            system.out.println("進入文件夾" + directory + " 失敗!開始創建文件夾");
          }
        } catch (ioexception ioe) {
          ioe.printstacktrace();
        }
        return flag;
      }
 
    //創建多層目錄文件,如果有ftp服務器已存在該文件,則不創建,如果無,則創建
    public boolean createdirecroty(string remote) throws ioexception {
      boolean success = true;
      string directory = remote + "/";
      // 如果遠程目錄不存在,則遞歸創建遠程服務器目錄
      if (!directory.equalsignorecase("/") && !changeworkingdirectory(new string(directory))) {
        int start = 0;
        int end = 0;
        if (directory.startswith("/")) {
          start = 1;
        } else {
          start = 0;
        }
        end = directory.indexof("/", start);
        string path = "";
        string paths = "";
        while (true) {
          string subdirectory = new string(remote.substring(start, end).getbytes("gbk"), "iso-8859-1");
          path = path + "/" + subdirectory;
          if (!existfile(path)) {
            if (makedirectory(subdirectory)) {
              changeworkingdirectory(subdirectory);
            } else {
              system.out.println("創建目錄[" + subdirectory + "]失敗");
              changeworkingdirectory(subdirectory);
            }
          } else {
            changeworkingdirectory(subdirectory);
          }
 
          paths = paths + "/" + subdirectory;
          start = end + 1;
          end = directory.indexof("/", start);
          // 檢查所有目錄是否創建完畢
          if (end <= start) {
            break;
          }
        }
      }
      return success;
    }
 
   //判斷ftp服務器文件是否存在  
    public boolean existfile(string path) throws ioexception {
        boolean flag = false;
        ftpfile[] ftpfilearr = ftpclient.listfiles(path);
        if (ftpfilearr.length > 0) {
          flag = true;
        }
        return flag;
      }
    //創建目錄
    public boolean makedirectory(string dir) {
      boolean flag = true;
      try {
        flag = ftpclient.makedirectory(dir);
        if (flag) {
          system.out.println("創建文件夾" + dir + " 成功!");
 
        } else {
          system.out.println("創建文件夾" + dir + " 失敗!");
        }
      } catch (exception e) {
        e.printstacktrace();
      }
      return flag;
    }
     
    /** * 下載文件 *
    * @param pathname ftp服務器文件目錄 *
    * @param filename 文件名稱 *
    * @param localpath 下載后的文件路徑 *
    * @return */
    public boolean downloadfile(string pathname, string filename, string localpath){ 
      boolean flag = false
      outputstream os=null;
      try
        system.out.println("開始下載文件");
        initftpclient();
        //切換ftp目錄 
        ftpclient.changeworkingdirectory(pathname); 
        ftpfile[] ftpfiles = ftpclient.listfiles(); 
        for(ftpfile file : ftpfiles){ 
          if(filename.equalsignorecase(file.getname())){ 
            file localfile = new file(localpath + "/" + file.getname()); 
            os = new fileoutputstream(localfile); 
            ftpclient.retrievefile(file.getname(), os); 
            os.close(); 
          
        
        ftpclient.logout(); 
        flag = true
        system.out.println("下載文件成功");
      } catch (exception e) { 
        system.out.println("下載文件失敗");
        e.printstacktrace(); 
      } finally
        if(ftpclient.isconnected()){ 
          try{
            ftpclient.disconnect();
          }catch(ioexception e){
            e.printstacktrace();
          }
        
        if(null != os){
          try {
            os.close();
          } catch (ioexception e) {
            e.printstacktrace();
          
        
      
      return flag; 
    }
     
    /** * 刪除文件 *
    * @param pathname ftp服務器保存目錄 *
    * @param filename 要刪除的文件名稱 *
    * @return */
    public boolean deletefile(string pathname, string filename){ 
      boolean flag = false
      try
        system.out.println("開始刪除文件");
        initftpclient();
        //切換ftp目錄 
        ftpclient.changeworkingdirectory(pathname); 
        ftpclient.dele(filename); 
        ftpclient.logout();
        flag = true
        system.out.println("刪除文件成功");
      } catch (exception e) { 
        system.out.println("刪除文件失敗");
        e.printstacktrace(); 
      } finally {
        if(ftpclient.isconnected()){ 
          try{
            ftpclient.disconnect();
          }catch(ioexception e){
            e.printstacktrace();
          }
        
      }
      return flag; 
    }
     
    public static void main(string[] args) {
      ftputils ftp =new ftputils(); 
      //ftp.uploadfile("ftpfile/data", "123.docx", "e://123.docx");
      //ftp.downloadfile("ftpfile/data", "123.docx", "f://");
      ftp.deletefile("ftpfile/data", "123.docx");
      system.out.println("ok");
    }
}

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持服務器之家。

原文鏈接:https://blog.csdn.net/liu_yulong/article/details/80633281

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 亚洲精品国产专区91在线 | 午夜福利在线观看6080 | 久久亚洲一级α片 | 王晶三级作品 | 久久精品国产色蜜蜜麻豆国语版 | 日本性生活免费看 | 深夜福利免费在线观看 | 99久久精品免费精品国产 | 亚州在线 | 亚洲欧美一区二区三区在线观看 | 热99re久久精品精品免费 | meyd–456佐山爱在线播放 | 丝瓜茄子绿巨人秋葵榴莲污 | 男男同志videos| 免费亚洲视频在线观看 | 91搞搞 | 亚洲 日韩 在线 国产 视频 | 亚洲六月丁香六月婷婷蜜芽 | 亚洲成色www久久网站 | 国产一区二区视频在线观看 | 亚洲国产成人久久77 | 国产v在线播放 | 国产情侣偷国语对白 | sedog在线长片| 国内精品一区视频在线播放 | 2021国产麻豆剧传媒剧情动漫 | 国产亚洲精品一区在线播 | 无码乱人伦一区二区亚洲 | 性啪啪chinese东北女人 | 国产一区二区免费视频 | 国产午夜精品福利久久 | 69萝莉| 我年轻漂亮的继坶2中字在线播放 | 王小军怎么了最新消息 | 午夜影院小视频 | 午夜福利体验免费体验区 | 欧美成人免费观看的 | 国产精品国产三级在线专区 | 鬼吹灯天星术在线高清观看 | 免费看3d小舞被躁视频网站 | 青草福利在线 |