Je kunt doen
read.split("\\s+");
of, als uw waarden worden gescheiden door tab
,
read.split("\t");
Met deze code:
String s = "george 19 180 75";
String[]split = s.split("\\s+");
for (int i = 0; i < split.length; i++) {
System.out.println(split[i]);
}
De uitvoer is:
george
19
180
75