Tagged Questions
5
votes
4answers
419 views
how to delete file from ftp server using java?
How can I delete a file from an ftp server using a java program?
I am successfully able to upload files on the ftp using the following code:
public static void main(String[] args) throws IOException ...
4
votes
1answer
268 views
FTP file upload failure Java
I use Apache's FTPClient and FTPServer libraries in my Java project. Server and client are on the same machine.
My FTPServer is supposed to be a local server,nothing related to the Internet. I can ...
4
votes
2answers
3k views
Issue with org.apache.commons.net.ftp.FTPClient listFiles()
The listFiles() method of org.apache.commons.net.ftp.FTPClient works fine with Filezilla server on 127.0.0.1 but returns null on the root directory of public FTP servers such as belnet.be.
There is ...
4
votes
4answers
3k views
Apache Commons FTPClient.listFiles
I am using org.apache.commons.net.ftp.FTPClient in one of my applications to work with a FTP server. I am able to connect, login, pwd and cwd. However, when I try to list the files it doesn't return ...
2
votes
1answer
714 views
Monitoring progress using Apache Commons FTPClient
I have a simple FTPClient class that downloads files form an FTP server. I also need to monitor progress of the download, but I do not see a way how. The actually download files function is a simple ...
1
vote
1answer
203 views
Java - Storing File on FTP Server fails
I am trying to store a byteArrayInputStream as File on a FTP Server. I could already connect to the Server and change the working path, but triggering the method to store the Stream as File on the ...
1
vote
0answers
765 views
Apache-Commons: Getting a CopyStreamException: IOException when I use CopyStreamEvent
I am trying to upload a file to an FTP server using the apache-commons' FTPClient class. storeFile() works with no error, but instead of using it, I wanted to create a listener so I could keep an eye ...
1
vote
1answer
382 views
Ftp file downloaded path has problem?
I have java code for file download through ftp, after download the file, it goes to default path. The specified destination path is not having the downloaded file. Why? my code is,
public class ...
1
vote
1answer
1k views
Error in FTP upload “553 Could not create file”
import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPReply;
import org.apache.commons.net.ftp.FTPFile;
import java.io.*;
public class FTPUpload{
public static boolean ...
0
votes
1answer
27 views
FTP Client listFiles() work in some machines
I have a program that make use of FTP Client, it is running in several machines and it stoped working in one of those machines.
Making the debug I can see that the problem is on listFiles(), ...
0
votes
0answers
152 views
changeWorkingDirectory on Apache Commons FTP causing error “Connection is not open” on logout
We have some code that is supposed to use the Apache commons FTP library to upload files to a partner's ftp server. The code looks like this...
private void ftp(ArrayList<File> files) {
...
0
votes
2answers
171 views
Ftp client cannot transfer file using IPV6
I am writing java code to send file through ftp as followed. The server that i used is FileZilla Server software at localhost.
public static void main(String[] args) {
try {
String ...
0
votes
1answer
112 views
Why doesn't FTPClient.setDefaultTimeout work?
I am trying to make a ftp connection in Java with FTPClient.
I wanted to look what happens when i separate the line between Server and Client. My application freezed about 30seconds and then it thows ...
0
votes
1answer
101 views
What is the right java API to get filtered file list from ftp server
I am just wondering how can I get the filtered file list from ftp server by maybe using wildcard in the parameter of some java api, I can't find the right api down here anyways, thanks a lot for any ...
0
votes
1answer
348 views
Apache FTPClient upload jar files ends up being corrupt
I seem to be uploading corrupt jar files to a remote server using Apache's FTPClient 3.0.1. I am also setting the file and file transfer type to binary.
FTPClient ftp = new FTPClient();
...
0
votes
1answer
217 views
open source java FTP client library [closed]
Possible Duplicate:
What Java FTP client library should I use?
I am looking for open source FTP client library which exposes APIsI.I will be calling these APis from my java program .The ...
0
votes
1answer
816 views
Apache FTPClient - incomplete file retrieval on Linux, works on Windows
I have a java application on Websphere that is using Apache Commons FTPClient to retrieve files from a Windows server via FTP. When I deploy the application to Websphere running in a Windows ...
0
votes
2answers
526 views
Detect or prevent Commons Net FTPClient from blocking on read
I'm using the Commons Net FTPClient class to periodically poll an ftp site and attempt to download a file. Occasionally the thread is blocking indefinitely when trying to read from the site and I ...
0
votes
4answers
1k views
Issue with encoding UTF-8 when FTPing files
I am able to have my application upload files via FTP using the FTPClient Java library.
(I happen to be uploading to an Oracle XML DB repository.)
Everything uploads fine unless the xml file has ...