我正在使用jxl API阅读xls sheet(由business开发)。
假设我们从具有日期的列中 10/11/2014 。 使用代码阅读时
if(row[i].getType()==CellType.DATE) {
DateCell dc = (DateCell) row[i];
return dc.getDate();
}
API如何决定是11月10日还是10月11日?
截至目前,当我尝试读取像10/41/2014这样的值时,我得到了NULL ...当我尝试阅读 10/11/2014 时,我得到了2014年10月11日。 http://jexcelapi.sourceforge.net/resources/javadocs/2_6_10/docs/jxl/DateCell.html
不确定是http://jexcelapi.sourceforge.net/resources/javadocs/2_6_10/docs/jxl/write/DateFormats.html#DEFAULT ......我该怎么改变它?假设两列有差异日期格式