您好,我编写此代码是为了在 excel 中添加一个日期,但是当添加单元格时,他还会显示时间。我想消除时间部分。如果有人可以提供帮助,请提前感谢您..
表[tabReg][tabCol]); 是字符串数组
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);