java 在jxl中添加数据_java – 使用jxl将数据添加到Excel文件

我正在使用jxl创建一个excel文件.首先应该只包含一些关于样式的格式和信息.然后,每当有人向其添加新数据时,都应该更新它.

public class WriteExcel {

private static WritableWorkbook workbook;

private static WritableCellFormat timesStandard;

private String inputFile;

final private static int FONT_SIZE = 12;

public void setOutputFile(String inputFile) {

this.inputFile = inputFile;

}

private void prepareSheet(WritableSheet sheet) throws WriteException {

sheet.mergeCells(0,1,0);

sheet.mergeCells(3,4,0);

sheet.mergeCells(6,7,0);

WritableFont times12pt = new WritableFont(WritableFont.TIMES,FONT_SIZE);

timesStandard = new WritableCellFormat(times12pt);

CellView cv = new CellView();

cv.setFormat(timesStandard);

}

public void write() throws IOException,WriteException {

File file = new File(inputFile);

WorkbookSettings wbSettings = new WorkbookSettings();

wbSettings.setLocale(new Locale("en","EN"));

WritableWorkbook workbook = Workbook.createWorkbook(file,wbSettings);

workbook.createSheet("First",0);

WritableSheet excelSheet = workbook.getSheet(0);

prepareSheet(excelSheet);

workbook.write();

workbook.close();

}

public static void main(String[] args) throws WriteException,IOException {

WriteExcel test = new WriteExcel();

test.setOutputFile("c:/Users/H/Desktop/test.xls");

test.write();

}

}

我知道我需要另一个允许我访问该文件并向其添加一些数据的类:

class Modify {

private static Logger logger = Logger.getLogger(Modify.class);

private File inputWorkbook;

private File outputWorkbook;

public Modify(String input,String output) {

inputWorkbook = new File(input);

outputWorkbook = new File(output);

logger.info("Input file: " + input);

logger.info("Output file: " + output);

}

public void readWrite() throws IOException,BiffException,WriteException {

logger.info("Reading...");

Workbook w1 = Workbook.getWorkbook(inputWorkbook);

logger.info("Copying...");

WritableWorkbook w2 = Workbook.createWorkbook(outputWorkbook,w1);

if (inputWorkbook.getName().equals("test.xls")) {

modify(w2);

}

w2.write();

w2.close();

logger.info("Done");

}

private void modify(WritableWorkbook w) throws WriteException {

logger.info("Modifying...");

WritableSheet sheet = w.getSheet("First");

//createContent(sheet); // contains methods responsible for adding data,for example:

addNumber(sheet,cols,rows,2);

private static void addNumber(WritableSheet sheet,int column,int row,double d) throws WriteException,RowsExceededException {

Number number;

number = new Number(column,row,d,timesStandard);

sheet.addCell(number);

}

}

但我最终得到一个空白的Excel文件,仅包含合并的单元格.

如何介绍修改?

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值