i've one text file, and im doing something like this :
resultingTokens = currentLine.split("\\t");
file data is tab delimited. But when I parse it with above code, it does not give expected output. I realize that tab is actually editor specific. But how does Java (above code) interprets it?