Excel导出类型NUMERIC支持精度浮点类型
This commit is contained in:
		
							parent
							
								
									9652906954
								
							
						
					
					
						commit
						33793d8eff
					
				@ -503,7 +503,7 @@ public class ExcelUtil<T>
 | 
			
		||||
        else if (ColumnType.NUMERIC == attr.cellType())
 | 
			
		||||
        {
 | 
			
		||||
            cell.setCellType(CellType.NUMERIC);
 | 
			
		||||
            cell.setCellValue(Integer.parseInt(value + ""));
 | 
			
		||||
            cell.setCellValue(StringUtils.contains(Convert.toStr(value), ".") ? Convert.toDouble(value) : Convert.toInt(value));
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user