This is Akshatha. I\'m stuck in parsing the following data. I want to fetch each word individually. Can I have a sample code so that I can proceed
RTRV-HDR RH
I would try String.split(). Something like this... String [] words; words = line.split("\s+");
String [] words; words = line.split("\s+");
The above splits the string on whitespace.