你好,任何人都可以,并告诉我为什么我在这个代码的行上得到空指针异常:cell = sheet.getRow(init_cell).getCell(0); init_cell = 7;但是当我用7替换上面一行中的变量时,nullpointer就会消失。
查询的结果集有多行。
public static void main(String[] args) throws Exception
{
int init_cell=7;
try {
Connection con = null;
Statement st = null;
ResultSet rs = null;
con = DriverManager.getConnection(
"jdbc:postgresql://127.0.0.1:5432/DB", "xxxx",
"xxxx");
st = con.createStatement();
rs = st.executeQuery("select * from vs;");
FileInputStream input_template = new FileInputStream(new File("C:\\Users\\xxxx\\Desktop\\ExcelWriteTest\\template-audit.xls"));
HSSFWorkbook template = new HSSFWorkbook(input_template);
HSSFSheet sheet = template.getSheet("Synthesis");
while(rs.next())
{
Cell cell = null;
cell = sheet.getRow(init_cell).getCell(0);
cell.setCellValue(rs.getString("serial_number"));
++init_cell;
}
input_template.close();
FileOutputStream out_template =new FileOutputStream(new File("C:\\Users\\xxxx\\Desktop\\ExcelWriteTest\\newaudit.xls"));
template.write(out_template);
out_template.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
答案 0 :(得分:1)
getRow()函数将采用整数参数,这意味着“在该特定行中,例如,在第7行,第一个单元 [即getCell( 0)]“它将插入值。