gpt4 book ai didi

java - 如何使用 Java URLConnection 进行 FTP 删除?

转载 作者:行者123 更新时间:2023-12-01 05:54:29 26 4
gpt4 key购买 nike

我有一个简单的放置并开始工作,但似乎找不到如何进行删除?作为引用,放置代码为:

BufferedInputStream inStream = null;
FileOutputStream outStream = null;

try {
final String ftpConnectInfo = "ftp://"+user+":"+pass+"@"+destHost+"/"+destFilename+";type=i";

LOGGER.info("Connection String: {}", ftpConnectInfo);

URL url = new URL(ftpConnectInfo);

URLConnection con = url.openConnection();
inStream = new BufferedInputStream(con.getInputStream());
outStream = new FileOutputStream(origFilename);

int i = 0;
byte[] bytesIn = new byte[1024];
while ((i = inStream.read(bytesIn)) >= 0) {
outStream.write(bytesIn, 0, i);
}
}

有什么方法可以修改 URL 来进行删除吗?

最佳答案

基于this discussion on JavaRanch ,我不确定你是否可以通过修改 URL 来做到这一点。是否有任何特殊原因导致您不只使用像 Apache commons FTPClient 这样的库类? ?

关于java - 如何使用 Java URLConnection 进行 FTP 删除?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3514139/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com