Programming Tutorials

Comment on Tutorial - Client Server in J2ME (Socket Programming sample) By David Hemphill



Comment Added by : Rajavel

Comment Added at : 2014-03-21 14:17:54

Comment on Tutorial : Client Server in J2ME (Socket Programming sample) By David Hemphill
Hi I am developing a code for data transfer from client to sever using wifi LAN network ,i was succeed the socket connection and data transfer by using your code, but we have bulk data , it take more than 3 min to transfer, kindly guide me how to improve the data transfer speed? Note: our client module doesn't support ftp,http protocol
os = sc.openOutputStream();
byte[] data = "Hello from a socket!".getBytes();
os.write(data);


View Tutorial