I am trying to create a preProcessor in java where it will read in the source code. I tryed to read the code in all to one string.
Question: How do I add the strings in the middle of <<< >>> to its own array list of some sort.
public class processLines {
public void pLine (String FileName)throws IOException{
Scanner scanner = null;
try{
scanner = new Scanner(new BufferedReader(new FileReader(FileName)));
while (scanner.hasNext()) {
String Line = "";
String LineB = "";
String LineC = "";
ArrayList<String> inside = new ArrayList<String>();
Line = Line + scanner.next()+ " ";
System.out.println("outside token: "+ Line);
StringTokenizer token = new StringTokenizer(Line);
while(token.hasMoreTokens()&& token.nextToken() != null){
LineB = Line;
if(LineB.contains("<<<")){
if(!LineB.contains(">>>") ){
LineC = LineC + scanner.next()+ " ";
inside.add(LineC);
System.out.println("LineC: " + LineC);
System.out.print(inside);
}
if(scanner.next(">>>") != null){
Line = scanner.next();
System.out.println("Line INside:" + Line);
}
}
}
}
}
finally {
if (scanner != null) {
scanner.close();
}
}
}
}
The text file sourceCode includes " Mo <<< Mo Larry Curly >>> Larry" all on one line. this code works if there is only one name in the middle of the <<< >>> but when I added more I get an error.
Error message that occurs: outside token: Mo
outside token: <<< LineC: Mo [Mo ]Exception in thread "main" java.util.InputMismatchException at java.util.Scanner.throwFor(Unknown Source) at java.util.Scanner.next(Unknown Source) at java.util.Scanner.next(Unknown Source) at processLines.pLine(processLines.java:26) at proProcess.main(proProcess.java:14)