Reputation: 1759
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
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
Reputation: 36
Try this library, it contains all your desired features:
http://www.sauronsoftware.it/projects/ftp4j/
Upvotes: 1
Reputation: 14399
Apache commons net has an FTP-client. And some other protocol implementations. http://commons.apache.org/net/
Upvotes: 2
Reputation: 18415
You can try the default HttpUrlConnection or Apache HttpClient.
Upvotes: 1