public static class TypeUtils { /// <summary> /// Object 转为 强类型 /// </summary> public static T ConvertType<T>(object value) { if (value == null) return default(T); var typeConverter = TypeDescriptor.GetConverter(typeof(T)); if (typeConve
import java.math.BigDecimal; import java.math.BigInteger; public class MathUtils { public static BigDecimal getBigDecimal( Object value ) { BigDecimal ret = null; if( value != null ) { if( value instanceof BigDecimal ) { ret = (BigDecimal) value; } e
若是开发后台系统,ASP.NET MVC中总是涉及了很多导入导出Excel的问题,有的时候处理起来比较烦 如果能使用以下代码解决,就完美了 public class ReportModel { [Excel()] public string Title { get; set; } [Excel()] public string Name { get; set; } } var models = new List<ReportModel> { new ReportModel{Name="
1. 区分 #{} 和 ${}的不同应用场景 1)#{} 会生成预编译SQL,会正确的处理数据的类型,而${}仅仅是文本替换.对于SQL: select * from student where xCode = ‘S123456’:如果使用#{}那么生成的SQL为:select * from student where xCode = ? 传的值为’S123456’:如果使用${}那么生成的SQL为:select * from student where xCode = S123456如果xCo