hey,
I would like to know if theres a big difference when sending data across a network.
Suppose i have a list of data packaged as a string e.g(“string1/string2/string3/string4”)
on my server end i unpack the string e.g first string i treat as string load into variable the second i parse as an int…etc etc
is it better to do this
out.println(string1);
out.print etc etc
and on server end
in.readline(etc etc)
in.readline
loading the data into variables as i read them.
I actually use both ways but wanted to know if theres any major difference peformance wise ?
Thanks in advance