Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
282 views

0 kb file created once FTP is done in java

I am trying to FTP a file on to a remote machine. Below is my code :- FTPClient ftpClient = new FTPClient(); ftpClient.connect("home.abc.com"); ftpClient.login("remote", "guesst12"); int replyCode ...
3
votes
2answers
559 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
2answers
411 views

Unable to connect to ftp server java

I should be able to successfully send and receive file to/from FTP server. But then, no changes occurred in the code and I started getting this : Error: java.net.ConnectException: Connection ...
2
votes
3answers
146 views

Apache Commons NET: Should I create a new FTPClient object on each connection or reuse one?

I'm just wondering: in my Java application, each time I need to connect to an FTP server, should I create a new FTPClient object, or should I create one FTPClient() object and re-use that each time I ...
2
votes
1answer
154 views

FTP a file to server, but it the result arrives with zero byte size

I am tring to upload a file to a database server using FTPClient. It shows the file is transfered succesfully, but the file is empty (size 0 bytes). Below is the source code that I have used to ...
2
votes
3answers
1k views

FTPClient (commons net) Upload problem

I use the following piece of code to upload a photo to a ftp host. But the photo seems to be corrupted after being uploaded: There are narrow gray lines at the bottom of the photo. The size of gray ...
2
votes
6answers
2k views

FTPClient - Java, upload file

I'm trying to do a VERY simple file upload. I want a Java FTPClient that can upload any file I tell it to. But the pdf always gets all messed up and my pdf editor (Adobe) won't open it, saying there ...
2
votes
2answers
533 views

Java: upload file to FTP problem (packets lost)

I'm trying to transfer a file from my Java application to an FTP server the program works, the file is transferred, but when I go to open in the FTO folder, the file is corrupted, I think that packets ...
2
votes
2answers
2k views

Apache Commons FTPClient, check if remote directory exist and get permissions (linux - unix)

Is it possible with FTPClient (Apache commons-net) to check if a remote directory exists? I want to do something like this: ftp.isDirectory(String path) //returns true, false And then get ...
1
vote
0answers
29 views

fileSystem to FTPFile[]?

I simply want to know if there is a way to mock an array of FTPFile. I am trying to pass as a parameter a fake FTPFile[] to the function I want to test: protected void indexFolder(FTPClient, ...
1
vote
2answers
413 views

FTPClient Uploading File = SocketException: Connection reset

I'm trying to upload a simple txt file via FTP using XAMPP and FileZilla. I'm using the Apache Commons Net 3.0.1 Library. This is my code, very basic things: FTPClient client = new FTPClient(); ...
1
vote
0answers
134 views

Android FTPClient - retrieveFileStream() always returns null

I am a newbie to Android. I am trying download a file from ftp server to sdcard using Apache Commons FTPClient. The line InputStream input = client.retrieveFileStream("/" + fileName); always ...
1
vote
1answer
172 views

Java FTP xls file upload

I am trying to upload files to a FTP Server in a Java class. I use apache library: org.apache.commons.net.ftp.FTPClient. The upload function works fine until I try to upload a XLS (Excel) file. In ...
1
vote
1answer
53 views

Checing if FTPClient download has recieved all bytes

I download an image file from an FTP Server using FTPClient. My look like this: public class FtpDownloadDemo { public static void main(String[] args) { FTPClient client = new FTPClient(); ...
1
vote
1answer
652 views

Getting an error while FTP file using FTPClient

I am getting following exception while ftp file over to some other machine. org.apache.commons.net.io.CopyStreamException: IOException caught while copying. at ...
1
vote
1answer
399 views

FTP connection through proxy with Java

I'm trying to connect to an FTP server through a proxy using org.apache.commons.net.ftp.FTPClient. Pretty sure the system properties are getting set correctly as per following: Properties props = ...
1
vote
1answer
1k views

FTPClient corrupts the images while uploading to ftp server on android?

I'm trying to upload images to a FTP server (on my local PC) from Android Phone (HTC Desire HD). Images are going to FTP server but they are corrupted. And the method (ftpClient.storeFile()) throws ...
1
vote
2answers
705 views

Bad File Number Socket Exception While Uploading file from server

I am trying to upload file from android sdcard to FTP Web server. For this i am using Apache FTPClient library. Here is my code to upload file ... FTPClient con = new FTPClient(); try ...
1
vote
1answer
367 views

connect to ftps site via java

I am trying to connect to a clients ftps server via my java code. I am using apache commons library to do so. However, I am not able to do so. Can anyone please help me with this. The client server ...
1
vote
3answers
270 views

How to create a directory with multiple levels in one call in Java using FTP

I am using the FTPClient library from Apache and cannot figure out a simple way to create a new directory that is more than one level deep. Am I missing something? Assuming the directory /tmp ...
0
votes
0answers
5 views

Cannot upload XML file - FTPClient

I am trying to upload a xml file to my FTP location , but couldnt following message were appeared , Connected to 192.168.1.26. 230 Login successful. 250 Directory successfully changed. 425 Failed to ...
0
votes
1answer
15 views

how to get the prompt in FTP Client using Apache commons

I am developing a client application to connect to a host/server by FTP/TELNET or it could be any protocol. It needs to be a generic app. I am using apache commons. Using Apache commons I was able to ...
0
votes
1answer
82 views

How to fix exception of FTPClient?

I'm making an Android application which can copy files from server into SDCard using FTPClient. I use FTPClient class from apache commons library. But the server contains 1000+ files, and when I try ...
0
votes
1answer
192 views

Apache commons-net FTP - uploading file to Secure FTP IIS

I'm trying to upload large file (>100Mb) using Apache commons-net FTP library to Secure FTP Server IIS. Here is my code: try{ ftpClient = new FTPSClient("TLS", false); ...
0
votes
1answer
35 views

Java Commons.net & FTP Permissions

I regularly upload files to a particular RedHat 5.5 Server with no problems using FileZilla. I am now trying to FTP to the same server with the Java Library org.apache.commons.net.ftp.FTPClient ...
0
votes
2answers
363 views

How to import org.apache.commons.net.ftp.FTPClient

In Eclipse, the following import... import org.apache.commons.net.ftp.FTPClient; ...produces the following error message... The import org.apache cannot be resolved I do not know how to import, ...
0
votes
2answers
416 views

FtpClient storeFile always return False

Please figure this out. The code runs properly without any exception. FTPClient ftp = new FTPClient(); ftp.connect(server); if(!ftp.login(username, password)) { ...
0
votes
1answer
611 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
1answer
97 views

Trying to do FTP tunnel over SSH

I am writing a JAVA program for work that at some point needs to transfer files from the machine it is running on to another machine. The requirements are such that it can be configured to either do ...
0
votes
0answers
297 views

FTPClient retrieveFileStream returns null - 500 Unknown command

I'm trying to download all files available in a directory through FTPClient. The following line is = ftpClient.retrieveFileStream(imageName); returns null, sometimes... The reply string is: 500 - ...
0
votes
0answers
257 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
1answer
131 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
149 views

Apache Commons FTP: isPositivePreliminary returns false (code 550)

I'm using Apache Commons' FTPClient to talk to an FTP server and upload some file. Inside the code, I discovered that the function isPositivePreliminary() returns false, because the reply code it gets ...
0
votes
1answer
232 views

When is the setDataTimeout called?

When does the setDataTimeout on FTPClient (commons.net) called? Does it called when the socket connection is hung or does it called when the time out value is reached? For eg. if I set the ...
0
votes
0answers
394 views

How to choose the folder to upload in using FTPClient in java?

I have the follwoing code, with ftp host :ftp.aydeena.com but don't want to upload files to the root directory . as i want to upload it to the following path : ...
0
votes
2answers
1k views

FTP client - listfiles

I am unable to get the exact file list using FTPClient. Sample code as below : FTPClient client = new FTPClient(); client.connect("x.x.x.x"); client.login("abcd", "abcd"); FTPFile[] ftpFiles = ...