Java StringTokenizer, empty null tokens

Posted by user69514 on Stack Overflow See other posts from Stack Overflow or by user69514
Published on 2010-04-25T14:43:52Z Indexed on 2010/04/25 14:53 UTC
Read the original article Hit count: 357

I am trying to split a string into 29 tokens..... stringtokenizer won't return null tokens. I tried string.split, but I believe I am doing something wrong:

String [] strings = line.split(",", 29);

sample inputs:

10150,15:58,23:58,16:00,00:00,15:55,23:55,15:58,00:01,16:03,23:58,,,,,16:00,23:22,15:54,00:03,15:59,23:56,16:05,23:59,15:55,00:01,,,,
10155,,,,,,,,,,,07:30,13:27,07:25,13:45,,,,,,,,,,,07:13,14:37,08:01,15:23
10160,10:00,16:02,09:55,16:03,10:06,15:58,09:48,16:07,09:55,16:00,,,,,09:49,15:38,10:02,16:04,10:00,16:00,09:58,16:01,09:57,15:58,,,,

© Stack Overflow or respective owner

Related posts about java

Related posts about stringtokenizer