Can anyone give me a example for parsing the content of the file and display the particular words from that file after the delimiters using the StringTokenizer class in java.

thank you all,

actually i tried this code public class word {

public static void main(String[] args)
{
    String line=" ";
    int lineNo;

    try
    {
        FileReader fr= new FileReader("f:/parse1.txt");
        BufferedReader br=new BufferedReader(fr);
        for(lineNo = 1; lineNo <=10; lineNo++)
        {
            if(lineNo == 2)
            {
            line = br.readLine();

            StringTokenizer st=new StringTokenizer(line,"-->");

            while(st.hasMoreTokens())
            {
                String s=st.nextToken();
                System.out.println(s);
            }

            }else
            {
                br.readLine();
            }


        }

    }catch(Exception e)
    {
        System.out.println(e);
    }
}

}

My content in the text file is:

(FusionResultProcessor.java:145) - -------------------> Feed id: 0001 processing

SUCCEEDED. ProcessingTimeTook: 5 milliseconds.

got the output as,

(FusionResultProcessor.java:145) Feed id: 0001 processing

I want to print only the feed id: xxx and i dont want to print the (fusion...). that is

I want to print the data after the delimiter">".

link|improve this question

0% accept rate
5  
Short answer, no - long answer, try it yourself, if it doesn't work, post what you've tried and we'll help you fix it. – KevinDTimm Jan 6 at 15:09
Agree with Kevin. At least google it. – Learner Jan 6 at 15:15
You can consider Scanner class also. – Jomoos Jan 6 at 16:04
feedback

3 Answers

Start with this example http://www.exampledepot.com/egs/java.io/ReadLinesFromFile.html that will read the file content.

link|improve this answer
feedback

Here's an example (not tested), that use a pipe delimiter :

  FileInputStream fstream = new FileInputStream("file.txt");
  DataInputStream in = new DataInputStream(fstream);
  BufferedReader br = new BufferedReader(new InputStreamReader(in));
  String strLine;
  //Read File Line By Line
  while ((strLine = br.readLine()) != null)   {
      //Create a StringTokenizer and pass the line to it
      StringTokenizer st = new StringTokenizer(strLine);
      while(st.hasMoreTokens())
          String token = st.nextToken("|");
  }
link|improve this answer
feedback
BufferedReader reader = new BufferedReader(new FileReader(new File("/path/to/file.txt")));
StringBuffer stringBuffer = new StringBuffer();
String line = null;
while ((line = reader.readLine()) != null) {
    stringBuffer.append(line).append("\n");
} 
StringTokenizer st = new StringTokenizer(stringBuffer.toString());
while (st.hasMoreTokens()) {
    String word = st.nextToken();
    System.out.println(word);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.