amrit_neo
amrit_neo

Reputation: 1759

Upload large size( >1GB) file to server using java

I want to upload large file (any format) more than 1GB. what technique I will use FTP or HTTP. And I want to add stop and resume feature to file i am uploading. How can I do that? Any example or API or library?

Upvotes: 6

Views: 6549

Answers (4)

Ashutosh Jha
Ashutosh Jha

Reputation: 1523

Refer here

I have done it using plupload. Hope it helps you. Any number of files of any sizes can be uploaded using it..

Upvotes: 1

Bogatyr
Bogatyr

Reputation: 36

Try this library, it contains all your desired features:

http://www.sauronsoftware.it/projects/ftp4j/

Upvotes: 1

Ludwig Magnusson
Ludwig Magnusson

Reputation: 14399

Apache commons net has an FTP-client. And some other protocol implementations. http://commons.apache.org/net/

Upvotes: 2

Michael-O
Michael-O

Reputation: 18415

You can try the default HttpUrlConnection or Apache HttpClient.

Upvotes: 1

Related Questions