我正在尝试使用 Netbeans 和 OpenCSV 将 ResultSet 中的数据写入 csv 文件。我添加了 OpenCSV 库:
import au.com.bytecode.opencsv.*;
...
try { CSVWriter writer = new CSVWriter(new FileWriter("C:\\test2.csv"), ',');
writer.writeAll(rs,includeHeaders);
}
catch (Exception e){}
}
但是我得到了错误:
cannot find symbol
symbol: variable includeHeaders
location: class DBConnect
我错过了其他一些进口吗?