java导出excel poi 问题,导出的数据只有一行
for(inti=0;i<head.size();i++){cell=row.createCell((short)i);XSSFRichTextStringrts=new...
for(int i = 0; i<head.size();i++){
cell=row.createCell((short)i);
XSSFRichTextString rts=new XSSFRichTextString((String)head.get(i));
cell.setCellValue(rts.toString());
}
rs.executeSql();
int counts =rs.getCounts();
long sTime =System.currentTimeMillis();
int i= 0;
String datas ="";
while(rs.next()){
for(int rowindex=0; rowindex<counts;rowindex++){
row=sheet.createRow(rowindex+1);
for(int cellindex=0;cellindex<head.size();cellindex++){
cell=row.createCell((short)cellindex);
datas=rs.getString(cellindex);
System.out.println(datas);
XSSFRichTextString richString = new XSSFRichTextString(datas == null ? "" :datas);
cell.setCellValue(richString.toString());
}
}
}
第一个for循环是输出的标题,while循环是填充值, rs.executeSql();
有值!!而且很多,但是我输出出来只有第一行数据循环了很多次,求大家看看是怎么回事 展开
cell=row.createCell((short)i);
XSSFRichTextString rts=new XSSFRichTextString((String)head.get(i));
cell.setCellValue(rts.toString());
}
rs.executeSql();
int counts =rs.getCounts();
long sTime =System.currentTimeMillis();
int i= 0;
String datas ="";
while(rs.next()){
for(int rowindex=0; rowindex<counts;rowindex++){
row=sheet.createRow(rowindex+1);
for(int cellindex=0;cellindex<head.size();cellindex++){
cell=row.createCell((short)cellindex);
datas=rs.getString(cellindex);
System.out.println(datas);
XSSFRichTextString richString = new XSSFRichTextString(datas == null ? "" :datas);
cell.setCellValue(richString.toString());
}
}
}
第一个for循环是输出的标题,while循环是填充值, rs.executeSql();
有值!!而且很多,但是我输出出来只有第一行数据循环了很多次,求大家看看是怎么回事 展开
5个回答
展开全部
while(rs.next()){
row=sheet.createRow(++rowindex);
for(int cellindex=0;cellindex<head.size();cellindex++){
cell=row.createCell((short)cellindex);
datas=rs.getString(cellindex);
XSSFRichTextString richString = new XSSFRichTextString(datas == null ? "" :datas);
cell.setCellValue(richString.toString());
}
}
刚没看清楚,现在看明白了。你应该用while循环来创建行,for循环创建列。
row=sheet.createRow(++rowindex);
for(int cellindex=0;cellindex<head.size();cellindex++){
cell=row.createCell((short)cellindex);
datas=rs.getString(cellindex);
XSSFRichTextString richString = new XSSFRichTextString(datas == null ? "" :datas);
cell.setCellValue(richString.toString());
}
}
刚没看清楚,现在看明白了。你应该用while循环来创建行,for循环创建列。
更多追问追答
追问
编号 姓名 部门 员工状态
0 男0 上海0 学生0
0 男0 上海0 学生0
0 男0 上海0 学生0
0 男0 上海0 学生0
0 男0 上海0 学生0
运行出来是这种效果
追答
示列代码:
int rowindex=0;
while(rs.next()){
row=sheet.createRow(++rowindex);
for(int cellindex=0;cellindex<head.size();cellindex++){
cell=row.createCell((short)cellindex);
datas=rs.getString(cellindex);
XSSFRichTextString richString = new XSSFRichTextString(datas == null ? "" :datas);
cell.setCellValue(richString.toString());
}
}
展开全部
for循环不能放在while里面。。。要放在外面,每次执行while都只有一行数据,你的for肯定只能拿到一行数据啊。。。逻辑问题啊。
追问
能帮我把代码改一下吗?谢谢了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
rs.next()没有取出来吧,用一个对象接收,然后再访问对象。
你的rs.getString(index)始终访问的是第一个对象
你的rs.getString(index)始终访问的是第一个对象
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
int counts =rs.getCounts(); 大哥,这个能取到第二行的值吗? 你debug下自己的程序吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |