I'm parsing a lot of .java-files with the latest JavaParser.
Files are parsed like this:
in = new FileInputStream(file);
cu = JavaParser.parse(in);
The following exception is raised as soon as one of the source-files contains a German umlaut (ä,ö,ü,ß) (they only appear in the comments of the .java-file)
Exception in thread "main" japa.parser.TokenMgrError: Lexical error at line 82, column 17. Encountered: "\ufffd" (65533), after : ""
What can I do to fix this problem. I can't change all source-files.
