- 浏览: 10528 次
- 性别:
- 来自: 南京
最新评论
package com.xwtec.interfaceplatform.commons.util;
import java.io.IOException;
import java.util.Map;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.HttpException;
import org.apache.commons.httpclient.HttpStatus;
import org.apache.commons.httpclient.MultiThreadedHttpConnectionManager;
import org.apache.commons.httpclient.methods.GetMethod;
import org.apache.commons.httpclient.methods.PostMethod;
import org.apache.commons.httpclient.params.HttpMethodParams;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
public class HttpClientUtils {
private static final Log logger = LogFactory.getLog(HttpClientUtils.class);
private static HttpClient client;
static {
MultiThreadedHttpConnectionManager connectionManager = new MultiThreadedHttpConnectionManager();
client = new HttpClient(connectionManager);
client.getParams().setConnectionManagerTimeout(3000);
}
public static String doGet(String url, String charset) throws Exception {
logger.debug(">>> URL : " + url);
if(url == null || "".equals(url.trim())){
logger.error(">>> an error url : url null!");
return null;
}
GetMethod method = null;
String result = null;
try {
client = new HttpClient();
method = new GetMethod(url);
client.executeMethod(method);
int status = method.getStatusCode();
if(status == HttpStatus.SC_OK){
result = charset == null ? method.getResponseBodyAsString() : new String(method.getResponseBody(), charset);
}else{
logger.error(">>> an error httpstatus returned, status code : " + status);
}
} catch (HttpException e) {
logger.error(e, e);
e.printStackTrace();
throw e;
} catch (IOException e) {
logger.error(e, e);
e.printStackTrace();
throw e;
} finally {
// 释放连接
if(method != null){
method.releaseConnection();
}
}
return result;
}
public static String doPost(String url, Map<String,String> params, String charset) throws Exception {
logger.debug(">>> URL : " + url);
if(url == null || "".equals(url.trim())){
logger.error(">>> an error url : url null!");
return null;
}
PostMethod method = null;
String result = null;
try {
client = new HttpClient();
method = new PostMethod(url);
method.getParams().setParameter(HttpMethodParams.HTTP_CONTENT_CHARSET,"UTF-8");
if(params != null && !params.isEmpty()){
String key = null;
for(Map.Entry<String, String> entry : params.entrySet()){
key = entry.getKey();
if(key != null && !"".equals(key.trim())){
//method.setParameter(key, new String(entry.getValue().getBytes(), "UTF-8"));
method.setParameter(key, entry.getValue());
}
}
}
client.executeMethod(method);
int status = method.getStatusCode();
if(status == HttpStatus.SC_OK){
result = charset == null ? method.getResponseBodyAsString() : new String(method.getResponseBody(), charset);
}else{
logger.error(">>> a error httpstatus returned, status code : " + status);
}
} catch (HttpException e) {
logger.error(e, e);
e.printStackTrace();
throw e;
} catch (IOException e) {
logger.error(e, e);
e.printStackTrace();
throw e;
} finally {
// 释放连接
if(method != null){
method.releaseConnection();
}
}
return result;
}
}
package com.xwtech.util;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.SocketException;
import java.util.ArrayList;
import java.util.List;
import org.apache.commons.io.FileUtils;
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.Logger;
/**
*
* @Title: FTPUtil.java
* @Description:FTP工具类
*/
public class FTPUtil
{
// private final static Logger log = Logger.getLogger(FTPUtil.class);
public FTPClient ftpClient;
/**
* 是否用二进制方式传输
*/
private boolean binaryTransfer = false;
private String server;//服务器
private int port; //端口
private String username;//ftp用户名
private String password;//ftp用户密码
private int connecttimeout=3000;
private int datatimeout=3000;
public List fileListDetail = new ArrayList();
public List fileListDir = new ArrayList();
public int getConnecttimeout() {
return connecttimeout;
}
public void setConnecttimeout(int connecttimeout) {
this.connecttimeout = connecttimeout;
}
public int getDatatimeout() {
return datatimeout;
}
public void setDatatimeout(int datatimeout) {
this.datatimeout = datatimeout;
}
/**
* @param server
* ftp服务器地址
* @param port
* ftp端口
* @param user
* ftp服务器登陆用户
* @param password
* ftp用户密码
*/
public FTPUtil(String server, int port, String username, String password)
{
System.out.println("FTPUtil start ...");
try{
this.server = server;
this.port = port;
this.username = username;
this.password = password;
this.connecttimeout=3000;
this.datatimeout=3000;
//if(ftpClient==null)
System.out.println("...sos ...");
ftpClient = new FTPClient();
}catch(Exception e)
{
e.printStackTrace();
}
System.out.println("FTPUtil end ...");
}
/**
* 直接连接FTP
*
* @throws SocketException
* @throws IOException
*/
public boolean connect() throws SocketException, Exception
{
boolean ilogin=ftpClient.isConnected();
int icount=0;
//System.out.println("~~~~~~~~ilogin="+ilogin);
while(!ilogin && icount<3)
{
try{
ilogin=connect("");
}catch (Exception e)
{
e.printStackTrace();
}
icount++;
}
// connect("");
return ilogin;
}
/**
* 连接到FTP指定子目录下
*
* @param path
* @throws SocketException
* @throws IOException
*/
public boolean connect(String path) throws Exception
{
// log.debug("连接FTP Server " + server);
boolean bflag=false;
ftpClient.setConnectTimeout(connecttimeout);
ftpClient.setDataTimeout(datatimeout);
ftpClient.setDefaultTimeout(datatimeout);
ftpClient.connect(server, port);
// 连接后检测返回码来校验连接是否成功
int reply = ftpClient.getReplyCode();
// log.info("连接返回码 " + reply);
if (FTPReply.isPositiveCompletion(reply))
{
if (ftpClient.login(username, password))
{
bflag=true;
// 设置为passive模式
//ftpClient.enterLocalPassiveMode();
}
}
else
{
ftpClient.disconnect();
// log.error("FTP server 拒绝连接");
}
// 连接到子目录下
if (!path.equals(""))
{
ftpClient.changeWorkingDirectory(path);
}
return bflag;
}
/**
* 断开ftp连接
* @throws IOException
*/
public void disconnect() throws Exception
{
try {
ftpClient.logout();
if (ftpClient.isConnected()) {
ftpClient.disconnect();
}
} catch (Exception ex) {
ex.printStackTrace();
}
}
/**
* 改变FTP目录
* @param path
* @return
* @throws IOException
*/
public boolean changeDirectory(String path) throws Exception
{
return ftpClient.changeWorkingDirectory(path);
}
/**
* 创建目录
* @param pathName
* @return
* @throws IOException
*/
public boolean createDirectory(String pathName) throws Exception
{
return ftpClient.makeDirectory(pathName);
}
/**
* 删除目录
* @param path
* @return
* @throws IOException
*/
public boolean removeDirectory(String path) throws Exception
{
return ftpClient.removeDirectory(path);
}
/**
* 删除目录及目录下所有文件
* @param path
* @param isAll
* @return
* @throws IOException
*/
public boolean removeDirectory(String path, boolean isAll) throws Exception
{
if (!isAll)
{
return removeDirectory(path);
}
FTPFile[] ftpFileArr = ftpClient.listFiles(path);
if (ftpFileArr == null || ftpFileArr.length == 0)
{
return removeDirectory(path);
}
//
FTPFile ftpFile=null;
for (int i=0;i<ftpFileArr.length;i++ )
{
ftpFile=ftpFileArr[i];
String name = ftpFile.getName();
if (ftpFile.isDirectory())
{
// log.info("删除子目录 [" + path + "/" + name + "]");
removeDirectory(path + "/" + name, true);
}
else if (ftpFile.isFile())
{
// log.info("删除文件[" + path + "/" + name + "]");
deleteFile(path + "/" + name);
}
else if (ftpFile.isSymbolicLink())
{
}
else if (ftpFile.isUnknown())
{
}
}
return ftpClient.removeDirectory(path);
}
/**
* 检查是否存在指定目录
* @param path
* @return
* @throws IOException
*/
public boolean existDirectory(String path) throws Exception
{
boolean flag = false;
FTPFile[] ftpFileArr = ftpClient.listFiles(path);
FTPFile ftpFile=null;
for (int i=0;i<ftpFileArr.length;i++)
{
if (ftpFile.isDirectory() && ftpFile.getName().equalsIgnoreCase(path))
{
flag = true;
break;
}
}
return flag;
}
/**
* 检查当前目录下文件是否存在
* @param path
* @return
* @throws IOException
*/
public boolean existFile(String filename) throws Exception
{
boolean flag = false;
FTPFile[] ftpFileArr = ftpClient.listFiles();
FTPFile ftpFile=null;
for (int i=0;i<ftpFileArr.length;i++)
{
ftpFile=ftpFileArr[i];
if (!ftpFile.isDirectory() && ftpFile.getName().equals(filename))
{
flag = true;
break;
}
}
return flag;
}
/**
* 检查当前目录下文件是否存在
* @param path
* @return
* @throws IOException
*/
public boolean renameFile(String from,String to) throws Exception
{
boolean flag = false;
try{
flag=ftpClient.rename(from, to);
}catch(Exception e)
{
e.printStackTrace();
}
return flag;
}
/**
* 获得当前目录下文件列表
* @return
* @throws IOException
*/
public List getFileList() throws Exception
{
return getFileList("");
}
/**
* 获得指定路径下文件列表
* @param path
* @return
* @throws IOException
*/
public List getFileList(String path) throws Exception
{
FTPFile[] ftpFiles = null;
if (!path.equals(""))
ftpFiles = ftpClient.listFiles(path);
else
ftpFiles = ftpClient.listFiles();
// System.out.println("file size ="+ftpFiles[0].getSize()+" name="+ftpFiles[0].getName()+" ftpFiles="+ftpFiles.length);
List retList = new ArrayList();
if (ftpFiles == null || ftpFiles.length == 0)
{
return retList;
}
FTPFile ftpFile =null;
for (int i=0;i<ftpFiles.length;i++)
{
ftpFile=ftpFiles[i];
if (ftpFile.isFile())
{
retList.add(ftpFile.getName());
}
}
return retList;
}
public void getFileList(String fullpath, boolean isforward)
throws Exception {
FTPFile[] ftpFiles = null;
int icount=0;
boolean iflag=false;
while(icount<3)
{
try{
connect();
ftpFiles = ftpClient.listFiles(fullpath);
iflag=true;
}catch (Exception e)
{
System.out.println("异常了="+fullpath+" 关闭连接重新登陆");
try{
ftpClient.disconnect();
}catch(Exception ex)
{
System.out.println("断开连接异常...");
ex.printStackTrace();
}
e.printStackTrace();
}
if(icount>0)
{
System.out.println("["+icount+"]次登陆标志 iflag="+iflag);
}
if(iflag)
break;
icount++;
}
// System.out.println("路径=" + fullpath + " 文件个数=" + ftpFiles.length);
if (ftpFiles != null && ftpFiles.length > 0) {
FTPFile ftpFile = null;
for (int i = 0; i < ftpFiles.length; i++) {
ftpFile = ftpFiles[i];
// System.out.println("ftpFiles[" + i + "] length="+ ftpFiles.length + " ftpFile=" + ftpFile.getName()+ " isFile=" + ftpFile.isFile());
if (ftpFile.getName()!=null && (!ftpFile.getName().endsWith(".") && !ftpFile.getName().endsWith(".svn"))) {
// System.out.println("ftpFiles[" + i + "] length="+ ftpFiles.length + " ftpFile=" + ftpFile.getName()+ " isFile=" + ftpFile.isFile());
if (ftpFile.isDirectory()) {
getFileList(fullpath + "/" +ftpFile.getName() , true);
Thread.sleep(10); //休息一下
}else //读出的文件名格式转为GBK
{
String filename=new String(ftpFile.getName().getBytes("GBK"), "ISO-8859-1");
String filepath=new String(fullpath.getBytes("GBK"), "ISO-8859-1")+"/"+filename+";"+ftpFile.getSize();
filepath=filepath.replace((char)92,(char)47);
//System.out.println(filepath);
fileListDetail.add(filename);
}
}
}
}
}
public boolean isExistDir(FTPFile[] ftpFiles)
{
boolean iflag=false;
if(ftpFiles!=null)
{
for(int i=0;i<ftpFiles.length;i++)
{
if(ftpFiles[i].isDirectory())
iflag=true;
}
}
return iflag;
}
/**
* 删除指定文件
* @param pathName
* @return
* @throws IOException
*/
public boolean deleteFile(String pathName) throws Exception
{
return ftpClient.deleteFile(pathName);
}
/**
* 上传文件
* @param localFilePath 本地文件路径
* @param remoteFilePath FTP文件名称
* @param delFile 上传完成后是否删除本地文件
* @return
* @throws IOException
*/
public boolean uploadFile(String localFilePath, String remoteFilePath, boolean delFile) throws Exception
{
boolean flag = false;
InputStream iStream = null;
try
{
setFileType();
iStream = new FileInputStream(localFilePath);
flag = ftpClient.storeFile(remoteFilePath, iStream);
}
catch (IOException e)
{
// log.error("FTP上传文件失败",e);
flag = false;
return flag;
}
finally
{
if (iStream != null)
{
iStream.close();
}
//是否删除文件
if (delFile)
{
//FileUtils.forceDelete(new File(localFilePath));
}
}
return flag;
}
/**
* 上传文件
* @param localFilePath 本地文件路径
* @param remoteFilePath FTP文件名称
* @return
* @throws IOException
*/
public boolean uploadFile(String localFilePath, String remoteFilePath) throws Exception
{
return uploadFile(localFilePath, remoteFilePath, false);
}
/**
* 上传文件
* @param iStream 文件流
* @param remoteFilePath FTP文件名
* @return
* @throws IOException
*/
public boolean uploadFile(InputStream iStream, String remoteFilePath) throws Exception
{
boolean flag = false;
try
{
setFileType();
flag = ftpClient.storeFile(remoteFilePath, iStream);
}
catch (IOException e)
{
// log.error("FTP上传文件失败",e);
flag = false;
return flag;
}
finally
{
if (iStream != null)
{
iStream.close();
}
}
return flag;
}
/**
* 下载一个远程文件到本地的指定文件
* @param remoteFileName 远程文件名
* @param localFileName 本地文件名
* @param delFile 下载完成后是否删除远程文件
* @return
* @throws IOException
*/
public boolean downloadFile(String remoteFileName, String localFileName, boolean delFile) throws Exception
{
boolean flag = false;
File outfile = new File(localFileName);
OutputStream oStream = null;
try
{
oStream = new FileOutputStream(outfile);
// System.out.println("remoteFileName="+remoteFileName+" localFileName="+localFileName);
// outfile.setLastModified((long)20100422);
int icount=0;
while(!flag && icount<3)
{
try{
// System.out.println("连接...icount=["+icount+"]");
connect();
ftpClient.setFileType(FTPClient.BINARY_FILE_TYPE);//
ftpClient.setControlEncoding("GBK");
// setFileType();
flag = ftpClient.retrieveFile(new String(remoteFileName.getBytes("GBK"),"ISO-8859-1"), oStream);
}catch(Exception ex)
{
ftpClient.disconnect();
System.out.println("下载失败,重新链接...["+icount+"]");
ex.printStackTrace();
}
icount++;
}
if (delFile)
ftpClient.deleteFile(remoteFileName);
}
catch (Exception e)
{
//log.error("FTP下载文件失败",e);
//flag = false;
//return flag;
//throw e;
e.printStackTrace();
}
finally
{
if(oStream!=null)
oStream.close();
}
return flag;
}
/**
* 下载一个远程文件到本地的指定文件
* @param remoteFileName 远程文件名
* @param localFileName 本地文件名
* @return
* @throws IOException
*/
public boolean downloadFile(String remoteFileName, String localFileName) throws Exception
{
return downloadFile(remoteFileName, localFileName, false);
}
/**
* 下载远程文件
* @param remoteFileName
* @return
* @throws IOException
*/
public InputStream downloadFile(String remoteFileName) throws Exception
{
return ftpClient.retrieveFileStream(remoteFileName);
}
/**
* 设置文件传输类型 是否采用二进制传输 默认为False
* @param binaryTransfer
*/
public void setBinaryTransfer(boolean binaryTransfer)
{
this.binaryTransfer = binaryTransfer;
}
/**
* 设置文件传输类型
*/
private void setFileType() throws Exception
{
// 设置文件传输类型
if (binaryTransfer)
{
ftpClient.setFileType(FTPClient.BINARY_FILE_TYPE);
}
else
{
ftpClient.setFileType(FTPClient.ASCII_FILE_TYPE);
}
}
public String getServer() {
return server;
}
public void setServer(String server) {
this.server = server;
}
public int getPort() {
return port;
}
public void setPort(int port) {
this.port = port;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
public boolean changePath(String path)
{
boolean iflag=true;
try{
toRoot(path);
String patharray[]=path.split("/");
for(int i=0;i<patharray.length;i++)
{
if(patharray[i]!=null && patharray[i].length()>0)
{
//connect();
iflag=ftpClient.changeWorkingDirectory(patharray[i]);
// System.out.println("文件跳转 iflag="+iflag+" patharray["+i+"]="+patharray[i]);
}
}
}catch(Exception e)
{
e.printStackTrace();
}
return iflag;
}
public boolean createPath(String path) //创建多层文件夹
{
boolean iflag=true;
try {
toRoot(path);
String patharray[] = path.split("/");
for (int i = 0; i < patharray.length; i++) {
if (patharray[i] != null && patharray[i].length() > 0) {
iflag = ftpClient.changeWorkingDirectory(patharray[i]);
if (!iflag) {
createDirectory(patharray[i]);
ftpClient.changeWorkingDirectory(patharray[i]);
}
// System.out.println("文件跳转 iflag=" + iflag + " patharray["+ i + "]=" + patharray[i]);
}
}
} catch (Exception e) {
e.printStackTrace();
}
return iflag;
}
public void toRoot(String path)
{
try{
int icount=0;
boolean iflag=false;
// connect();
iflag=ftpClient.changeWorkingDirectory("/");
// while(icount<3)
// {
// try{
// connect();
// iflag=ftpClient.changeWorkingDirectory("/");
// //iflag=true;
// }catch (Exception e)
// {
//// iflag=false;
// e.printStackTrace();
// }
//
// if(iflag)
// break;
// else{
// boolean ilogin=ftpClient.changeWorkingDirectory("/");
// if(ilogin)
// System.out.println("["+icount+"]重新读取根目录成功!");
// else
// System.out.println("["+icount+"]重新读取根目录失败!");
// }
// icount++;
// }
}catch(Exception e)
{
e.printStackTrace();
}
}
public static void main(String[] args)
{
//String server, int port, String username, String password
FTPUtil ftp=new FTPUtil("127.0.0.1",221,"test","123456");
try{
ftp.connect();
ftp.binaryTransfer=true;
ftp.setBinaryTransfer(true);
ftp.ftpClient.setControlEncoding("GBK");
// System.out.println("~~~~~~~~~~~~~~~~~~~ files="+ftp.ftpClient.listFiles("/com/xwtech/cspf/webservice/ringservice").length);
boolean ichange=ftp.changeDirectory("com"); //ftp.changePath("com");
System.out.println("~~~~~~~~~~~~~~~~~~~ichange="+ichange+" files="+ftp.getFileList().size());
boolean iflag=ftp.downloadFile(new String("/TestClient.java".getBytes("GBK"),"ISO-8859-1"), "D:\\helloSMS\\TestClient.java", false);
System.out.println("~~~~~~~~~~~~~~~~~~~iflag="+iflag);
}catch(Exception e)
{
e.printStackTrace();
}
}
}
- commons-net-2.0.jar (192.7 KB)
- 下载次数: 7
相关推荐
Java访问FTPSever是一个常见的任务,特别是在开发需要与远程服务器交换文件的应用程序时。这篇博客可能探讨了如何使用Java的标准库或第三方库来实现这一功能。`commons-net-1.4.1.jar`和`jakarta-oro-2.0.8.jar`是两...
### JAVA获取FTP文件列表知识点详解 #### 一、概述 在现代软件开发中,FTP(File Transfer Protocol)是一种广泛使用的协议,用于在网络上进行文件传输。本文档将详细介绍一个基于Java的实用工具类`FtpClientUtil`...
FtpList部分是用来显示FTP服务器上的文件;...以下是这三部分的JAVA源程序: (1)显示FTP服务器上的文件 void ftpList_actionPerformed(ActionEvent e) { String server=serverEdit.getText(); //输入的FTP服务器的IP地址
FTP提供了一种可靠的方式来传输文件,使得应用程序可以远程访问和操作存储在FTP服务器上的数据。以下是一份详细的Java FTP文件读取教程,涵盖了相关的重要知识点。 1. **FTP库的选择**: Java标准库中并没有内置...
Java FTP Server是一种基于Java语言实现的FTP(File Transfer Protocol)服务器,它允许用户通过FTP协议在互联网上进行文件传输。FTP是Internet上广泛使用的标准服务之一,主要用于在客户端和服务器之间上传、下载...
FTP服务器的实现通常涉及维护用户认证、管理文件系统访问权限以及处理各种FTP命令。 FTP协议本身分为两种模式:主动模式(PORT)和被动模式(PASV)。在主动模式下,客户端告诉服务器它接收数据的端口,服务器则...
总结,Java访问FTP服务器并实现文件上传下载是一项常见的任务,通过Apache Commons Net库,我们可以简化这一过程。理解FTP协议的基本原理,熟悉Java FTP客户端的使用,以及查阅相关的文档和示例,都是开发高效FTP...
Java FTP连接池是一种用于管理FTP(文件传输协议)连接的资源池,它的主要目标是提高应用程序的性能和效率。在传统的FTP操作中,每次需要连接到FTP服务器时都会创建一个新的连接,这会消耗大量时间和系统资源。而...
Java FTPServer可能提供了用户管理和认证机制,允许管理员创建、修改或删除用户账户,并设置相应的访问权限。 3. **目录管理**:FTP服务器允许用户浏览、切换目录,以及上传、下载、重命名和删除文件。在Java FTP...
1. **用户认证**:JavaFTP服务器支持不同的用户账号和权限设置,确保只有经过身份验证的用户才能访问特定的文件或目录。 2. **文件传输**:服务器能够处理客户端发起的文件上传请求,将文件从客户端传输到服务器;...
标题中的"javaftp.zip_Java CORBA_ftp java_ftp user.c_java ftp_javascript"暗示了这个压缩包可能包含了一个使用Java实现的FTP(File Transfer Protocol)客户端或者服务器,可能还涉及到CORBA(Common Object ...
本示例简单的实现了一个用Java代码来访问FTP,根据指定FTP的目录,访问这个路径下面的Ftp的文件,取出这个目录下面所有文件的文件名保存到一个Map中,最后根据系统时间和文件生成时间做对比,得出该日是否正确生成...
4. **权限控制**:FTP服务器通常需要验证用户身份,只允许授权的用户访问特定资源。这可以通过维护用户数据库或集成更复杂的认证机制如LDAP来实现。 5. **会话管理**:FTP会话可能包含多个文件传输,服务器需要跟踪...
1.客户端通过Windows的命令行访问FTP服务器。 2.FTP服务器可以并发地服务多个客户。 3.至少实现对FTP命令user、pass、dir、get的支持。即用户注册、显示服务器端的文件列表、下载文件等。(补充了上传文件,同时处理...
8. **线程安全**:如果需要在多线程环境中使用FTP客户端,需要确保其线程安全,避免并发访问时的数据冲突。 9. **文件处理**:在上传或下载文件时,需要使用`java.io.File`类进行本地文件的读写操作。 10. **性能...
本项目旨在提供一个基于Java的FTP客户端,以满足用户对远程文件系统的访问需求。以下是对这个项目的详细解读: 1. FTP协议基础: FTP是一种用于在网络上传输文件的标准协议,它允许用户从远程服务器获取文件或向其...
9. **配置与管理**:FTP服务器可能需要配置用户权限、匿名访问、日志记录等功能,这需要开发者对配置文件和服务器管理有所理解。 10. **测试与调试**:使用像`netcat`这样的工具或集成到项目中的测试框架,对FTP...
Java 实现FTP(File Transfer Protocol)是指使用Java编程语言来创建一个FTP服务器或者客户端,以进行文件的上传、下载和管理。FTP是一种广泛使用的互联网协议,用于在不同计算机之间传输文件。在Java中,我们可以...
return "没有权限访问FTP"; } return ""; } ``` ### 3. 关闭FTP连接 在完成FTP操作后,通常需要关闭FTP连接,释放资源。这可以通过调用`closeServer()`方法来实现。 代码示例: ```java private void ...
java实现FTP服务器_docx