Tagged Questions
Apache Commons Net is a Java library that implements the client side of many basic Internet protocols.
6
votes
2answers
3k views
Transfer raw binary with apache commons-net FTPClient?
UPDATE: Solved
I was calling FTPClient.setFileType() before I logged in, causing the FTP server to use the default mode (ASCII) no matter what I set it to. The client, on the other hand, was behaving ...
3
votes
2answers
439 views
Apache Commons FTP problems
I want to implement a FTP Client with Apache Commons Net only for uploading data.
The Connection and Login to FTP-Server works fine.
But the upload does not work right.
The files are a little to big ...
3
votes
3answers
1k views
Upload file via Ant FTP task in Maven
I'm trying to upload a file using an Ant task. If I use Ant directly the file is uploaded, but if I call the ant task via Maven (using the maven-antrun-plugin) I get the following error:
An Ant ...
3
votes
1answer
519 views
commons net ftp issue
I am facing an issue where it appears that my FTP connection is correct and no errors are received, but the file is not placed on the ftp server.
I am using commons-net-ftp.
Code:
int ...
3
votes
1answer
2k views
Using FTP Proxy with apache commons-net
I want to set up an FTP connection using a proxy server with Apache's commons-net.
But looking at this Does FTPClient support FTP connections through an FTP proxy server? has me worried.
I have to ...
2
votes
1answer
51 views
Inverting netmask using commons SubnetUtils.SubnetInfo.getNetmask() in Java
Lets say I have this:
SubnetUtils utils = new SubnetUtils("192.168.1.0/24");
utils.getInfo().getNetmask() // = 255.255.255.0
Is there a easy way of getting the mask inverted (Cisco ACL style)?
...
2
votes
2answers
387 views
ftp is corrupting my images!
I have a grails app which should upload a bunch of images to a server via FTP. To do that I`m using commons-net. What is weird is, that if I create a new connection for each file it works normal, but ...
2
votes
2answers
268 views
How do I create a robust FTP connection using commons-net
We've had a lots of issues where our ftp connection hangs indefinitely, causing the program to hang.
How do I configure FTPClient to not do this?
2
votes
2answers
779 views
Ant telnet is hanging on a simple task
<?xml version="1.0" ?>
<project name="test" default="root">
<target name="telnet">
<telnet server="10.1.1.1">
<read>login:</read>
...
1
vote
2answers
207 views
Commons-Net FTPClient is not downloading files correctly
Solved
It turned out I misunderstood what the available() method actually does, so I just altered the code that wrote the data to this:
int b = input.read();
while (b != -1) {
output.write(b);
...
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
788 views
apache-commons ftp retrieve multiple files
I'm attempting to use apache-commons net FTP lib to do a get from a FTP server. The code works fine if there's only 1 file in the directory, but always returns null the second time I call ...
1
vote
6answers
2k views
ant ftp doesn't download files in subdirectories
I'm trying to download files in subdirectories from an ftp server with ant.
The exact set of files is known.
Some of them are in subdirectories.
Ant only seems to download the ones in the root ...
0
votes
0answers
49 views
apache FTPClient makeDirectory() encoding issue
I am having a problem with creating a directory with some accents as a name. For example
makeDirectory("tést") will indeed create folder tést on the ftp file system, but the files that I put inside ...
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
0answers
139 views
Getting SocketException when flushing FTP directory, with apache common-net
one of our process get this stacktrace when try to list the file from a FTP directory
java.net.SocketException: Broken pipe
at java.net.SocketOutputStream.socketWrite0(Native Method)
at ...
0
votes
1answer
425 views
FTPClient download file failed,the retrieveFile() method replyCode=550
/*
I run a FTP server on localhost.when I download files use ftpClient.retrieveFile() method,it's replyCode is 550 . I read the API of commons-net and find the 550 replyCode,the defines is" public ...
0
votes
0answers
247 views
FTPClient(org.apache.commons.net.ftp.FTPClient) is not able to retrieve large xml file
I have three different sizes of files in my ftp location with 2KB, 76KB and 216MB. I have to process these files one by one, I am able to retrieve the first two files easily using the ...
0
votes
2answers
93 views
blocking (synchronous) ftp download in java?
I'm currently using commons-net library for FTP client in my app. I have to download from remote server some files, by some criteria based on the file name. This is a very simplified and reduced ...
0
votes
1answer
225 views
How do I send telnet erase line (EL) with Java Apache commons?
I've been trying to figure this one out for a while now:
I've set up an apache commons telnet client that can send commands to a server and read responses. My program basically works like this:
...
0
votes
1answer
403 views
Problem in Uploading file on ftp server using commons net 3.0 api (org.apache.commons.net )
I am trying to save text file on ftp server which is in my drive and it has data, the file is successfully stored there, but the file is completely empty even it has data.
The following is my loose ...
0
votes
2answers
514 views
how to get list of file from ftp server if server is very slow or there are more clients are there in java
I have to get the list of files or folder present in ftp server .I have tried the following code but I do not get the list. If I am running the same code I am getting list of file if I am making my ...
0
votes
1answer
652 views
Java apache commons FTP, how to download image file to BufferedImage
So I am trying to download an image file from an FTP site, get some meta data from it, and then return the binary data to a web page using the Play! Framework. Here is the basic code i am using inside ...
0
votes
2answers
415 views
Create a temporary file, then upload it using FTP (Java webapp)
Users of my web application have an option to start a process that generates a CSV file (populated by some data from a database) and uploads it to an FTP server (and another department will read the ...
0
votes
1answer
383 views
Should retrieveFile of commons FTPClient remove file from remote server
We are using Commons FTPClient to retrieve files from an ftp server. Our code is similar to:
FTPClient ftpClient= new FTPClient();
ftpClient.connect(server);
ftpClient.login(username, password);
...
0
votes
1answer
596 views
Apache commons ftp
i used CrossFTP to create FTP Server
when i connected using firefox it works well.
but when using Apache commons it throws an Exception
import java.net.SocketException;
import ...
0
votes
1answer
339 views
FTP Protocol, jakarta commons net, filename encoding problem
I have a working application that downloads a specific file in the Ftp Server.
I have the filename I want to download, so I was just connecting and using:
ftp.retrieveFile(filename, fileInputStream);
...
0
votes
2answers
466 views
FTP connection “hangs” on “LIST”
All,
I have an issue with a remote ftp server that has kept me busy for three days now and I am going nuts over it. :(
A while ago, I wrote a simple ftp retriever class that uses apache commons-net ...
0
votes
1answer
1k views
commons-net ftp is uploading corrupted files
I'm trying to use apache commons-net for ftp file transfers.
Problem is files are intermittently arriving at the server corrupt. by 'corrupt' i mean that winrar tells me a zip file has an 'Unexpected ...
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 ...