i have few question how https usefull for file sending and downloading..could i this and can we send large file 20 MB through URL url=new URL("........") url.getStream()
server side
request.getStream();
i am sending file using URL class and request object in server
please suggest me can i use this for large client application/
Judge a man by his questions rather than his answers --Voltaire
SCJP 1.5 97%
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35221
7
posted
0
The HttpClient library can help greatly in implementing file upload over HTTP, and the FileUpload library can handle the server part (assuming that the server is a servlet engine). See http://faq.javaranch.com/java/FileUpload for detail.