Hi i am looking to find out the best way to extract specific paragraph from file using java.
From the following data i need to extract data from \"D & A\"
I would read in the file line by line, something like this tutorial.
You can then check if the line contains a certain string.
boolean readFollowingLines = false;
ArayList paragraph=new ArayList();
if( string.indexOf("1- End") > 0 ) // maybe >= 0, not shure
readFollowingLines = false;
if (readFollowingLines)
paragraph.add(string);
if( string.indexOf("D and A") > 0 ) // maybe >= 0, not shure
readFollowingLines = true;
If you want more then one paragraph you need to extend this a little. Anyway, I'd probably do it something like this