Click here to Skip to main content
15,886,873 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have a text file with 5 columns
i want to extract all the entry of first column how can that be possible thought of using split/string tokenizer
Posted
Updated 10-Jan-13 22:41pm
v2

1 solution

It depends on the format of your file.
Reading the file line by line:
  • If the fields are delimited then you may use the split method of the string class.
  • On the other hand, if you have fixed width fields then you may use the substring method.
 
Share this answer
 
Comments
strbry 12-Jan-13 2:17am    
its a text file and m new to java can u help mi wid the code for reading file line by line and using split to get the first field values

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900