Re: How to read from a file
Posted By:
Benoit_Quintin
Posted On:
Tuesday, February 5, 2002 08:23 AM
Read the String, create a StringTokenizer, take each token and check for the match (String.indexOf and/or String.regionMatches()), use the index returned by the and get the substring...If you don't know how to do this, please check the Java API, available online.