Hello,
I'm reading a file line by line and I need to print it out but a strange thing:
Qt Code:
  1. String [] token = line.split("\\t");
  2. .....
  3. System.out.println( token[0] + '\t' + token[1] );
To copy to clipboard, switch view to plain text mode 
the otput is something about:
Qt Code:
  1. DDDDD 3333333 //if there are 5 characters appears many spaces
  2. DDDD 3333333 //this should be ok
  3. EEEEE 33333333
To copy to clipboard, switch view to plain text mode 
why that? I need only a tab between them? thanks