Java Split on Tab

// This will work if you are reading a file
String[] tokens = line.split("\t");
Karamolegkos