I'm trying to convert a String that I've read from the first line of a text file to integer
this is how:
String="8 12 10"
and this is what I'd like to have:
int x=8
int y=12
int z=10
parseInt doesn't work because it gives me some other number (perhaps the header of the text file or sth)
Plzzzzzzzz help!
thanx in advance