I have a httpconnection. Client need a file(13K) from Server
In servlet, it is correct to get the data to DataInputStream and then OutputStream.write(data) to Client;
But when receive data in Client, DataInputStream.available() only get 8192Byte
Is it mean that with httpconnection transporting the 8192byte data once?
If I need large file,I must connect with http many times?
I will apreciate your replies
Thank you

Reply With Quote

