0
刪除十進制值我具有以下CellProcessor方法在supercsv
private static CellProcessor[] getProcessors() {
final CellProcessor[] processors = new CellProcessor[] {
new NotNull(), // senderId
new NotNull(), // orderId
new NotNull(), // execQuantity
new NotNull(), // execPrice <~~~~~~~~~~~~
new NotNull(new FmtDate("yyyy-MM-dd")), // deliveryDate
};
return processors;
}
作爲execPrice是雙,輸出CSV文件包含十進制值。它必須是bean中的雙重類型。編寫csv文件時需要更改它。
如何刪除supercsv中的十進制值(或轉換爲整數)?我認爲我必須在CellProcessor中使用FmtNumber
,但我不知道如何。