您好我编写此代码以在Excel中添加日期,但是当添加单元格时,他还会显示时间。我希望淘汰时间部分。如果有人可以提供帮助,请提前感谢您。
塔布拉[tabReg] [tabCol]);是String Array
SimpleDateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");
Date convertedDate = dateFormat.parse(Tabla[tabReg][tabCol]);
DateFormat df = new DateFormat("yyyy/MM/dd");
WritableCellFormat wdf = new WritableCellFormat(df);
cf = new WritableCellFormat(df);
cell = new jxl.write.DateTime(exCol,exReg, convertedDate);
cell.setCellFormat(wdf);
sheet2.addCell(cell);
答案 0 :(得分:0)
解决方案是在创建de cell时放置格式。
cell = new jxl.write.DateTime(exCol,exReg, convertedDate,wdf);