Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Simple readline algorithm for Networking

Name: Anonymous 2008-08-19 16:52

Are there any simple standardized way of reading a full line from a socket that mallocs the memory for you? If so, what are they? If not, is there a way to do it in approximately O(1) time (obviously not including the time for the memory allocation).

Name: Anonymous 2008-08-19 18:04

BufferedReader r = new BufferedReader(new InputStreamReader(new Socket(host, port).getInputStream()))
String s;
while((s = r.readLine() != null) process(s);
r.close();

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List