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">".
Scannerclass also. – Jomoos Jan 6 at 16:04