Ciąg Java podzielony z ciągów wejściowych

String line = scann.nextLine();
String[] info = line.split("	");
				
for( String s : info) {
	System.out.println(s);
}
Pable Sorren