Excel导入Oracle验证类
带注视Excel导入Oracle验证类 public class ExcelOperation { // 如果客户端计算机运行的是英语版本的 Excel,并且当前用户的区域设置配置为英语之外的某个语言,则 Excel 将尝试查找针对所配置语言的语言包。如果没有找到所需语言包,则会报告错误。 CultureInfo oldCultureInfo = Thread.CurrentThread.CurrentCulture; ExcelInstance excelInstance; public ExcelOperation(ExcelInstance excelInstance) { this.excelInstance = excelInstance; Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("en-US"); } 。。。。。。。。