Sto cercando di eseguire la mia classe parser JSQL, ma sto ottenendo Error: java: invalid source release 1.9
.
Ho provato a seguire questa risposta . Ho cambiato File> Build, Execution, Deployment> Java Compiler> Project bytecode version: 1.8. Tuttavia, non posso cambiare il livello di lingua del modulo e il livello di lingua del progetto in 1.8 perché non c'è opzione per quello. Di seguito ricevo ancora lo stesso errore.
Codice
package cs4321.project2;
import java.io.FileReader;
import net.sf.jsqlparser.parser.CCJSqlParser;
import net.sf.jsqlparser.statement.Statement;
import net.sf.jsqlparser.statement.select.Select;
public class Parser {
private static final String queriesFile = "resources/input/queries.sql";
public static void main(String[] args) {
try {
CCJSqlParser parser = new CCJSqlParser(new FileReader(queriesFile));
Statement statement;
while ((statement = parser.Statement()) != null) {
System.out.println("Read statement: " + statement);
Select select = (Select) statement;
System.out.println("Select body is " + select.getSelectBody());
}
} catch (Exception e) {
System.err.println("Exception occurred during parsing");
e.printStackTrace();
}
}
}