com.jchanghong.poi.excel.editors.TrimEditor Maven / Gradle / Ivy
The newest version!
package com.jchanghong.poi.excel.editors;
import com.jchanghong.poi.excel.cell.CellEditor;
import org.apache.poi.ss.usermodel.Cell;
import com.jchanghong.core.util.StrUtil;
/**
* 去除String类型的单元格值两边的空格
* @author Looly
*
*/
public class TrimEditor implements CellEditor {
@Override
public Object edit(Cell cell, Object value) {
if(value instanceof String) {
return StrUtil.trim((String)value);
}
return value;
}
}