概述
首先说一下,我用的JXL(JXL比较简单,但是没有POI功能强大):
jar包:jxl.jar;
没有什么直接的方法可以实现这个功能,我用的是把原先的excel中的内容取出来,放入新的excel,但是从第二列开始存放,从而达到效果,下面是代码...
package Excel;
import jxl.Cell;
import jxl.Sheet;
import jxl.Workbook;
import jxl.write.Label;
import jxl.write.WritableSheet;
import jxl.write.WritableWorkbook;
import java.io.File;
/*** Created by huipu on 2016/11/10.*/public class Excel {
public static void main(String[] args) {
String url = "C:/Users/huipu/Desktop/表.xls";
InsertExcelClo(url);
}
public static void InsertExcelClo(String url){
File file = new File(url);
if(!file.exists()){
System.out.println("文件不存在");
}
Workbook wb = null;
WritableWorkbook wwb = null;
try{
wb = Workbook.getWorkbook(file);
wwb = Workbook.createWorkbook(file);
Sheet old_sheet = wb.getSheet(0);
String old_name = old_sheet.getName();
int cols = old_sheet.getColumns();
int rows = old_sheet.getRows();
WritableSheet new_sheet = wwb.createSheet(old_name,0);
for(int i = 0;i
for(int j = 0;j
if(j==0){
if(i==0){
Label label = new Label(0,0,"xx");
new_sheet.addCell(label);
}else if(i==1){
Label label = new Label(0,1,"xxx");
new_sheet.addCell(label);
}else {
Label label = new Label(0,i,"");
new_sheet.addCell(label);
}
}else {
Cell cell = old_sheet.getCell(j-1,i);
String str = cell.getContents().equals("")?"":cell.getContents();
Label label = new Label(j,i,str);
new_sheet.addCell(label);
}
}
}
wwb.write();
System.out.println("修改成功");
}catch (Exception e){
e.printStackTrace();
}finally {
try {
if(wb != null){
wb.close();
}if(wwb != null){
wwb.close();
}
}catch (Exception e){
System.out.println("关闭异常");
e.printStackTrace();
}
}
}
}
最后
以上就是腼腆乌龟为你收集整理的java cell设置绝对位置_java操作excel在开始位置添加一列的全部内容,希望文章能够帮你解决java cell设置绝对位置_java操作excel在开始位置添加一列所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复