ฉันพยายามที่จะทำงานระดับ JSQL parser ของฉัน Error: java: invalid source release 1.9
แต่ฉันได้รับ
ฉันพยายามทำตามคำตอบนี้ ฉันเปลี่ยน File> Build, Execution, Deployment> Java Compiler> Project bytecode เวอร์ชัน: 1.8 อย่างไรก็ตามฉันไม่สามารถเปลี่ยนระดับภาษาของโมดูลและระดับภาษาของโครงการเป็น 1.8 ได้เนื่องจากไม่มีตัวเลือกสำหรับสิ่งนั้น ฉันยังคงได้รับข้อผิดพลาดเดียวกันด้านล่าง
รหัส
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();
}
}
}