XL读取Excel日期时间多出了8个小时. Cell c = rs.getCell(j, i); if (c.getType() == CellType.DATE) {//手动填写模板文件时为 date 类型,其他情况有可能不是date类型 DateCell dc = (DateCell) c; Date date = dc.getDate();
Unity用Excel.dll简单读取Excel内容 需要Excel.dll 需要如下三个命名空间 using System.IO; using Excel; using System.Data; 1.新建Excel文件,并添加到Unity工程 这里新建的文件名为test.xml 2.创建一个C#脚本 using System.Collections; using System.Collections.Generic; using UnityEngine; using System.IO; us