赞
踩
1、ConfigFile = "config.xlsx" (配置文件路径,Excel表)
2、ConfigSheets = {"settings","contants"}
- out_Config = new Dictionary(of String, object)
- #读取配置文件信息配置为字典数据
- ForEach sheet in configsheet:
-
- #读取sheet中的数据输出到数据表
- read sheet → configTable(变量类型dataTable)
-
- #遍历数据表
- ForEach row in configTable
- #当 'name' 列数值不为空时
- NOT String.IsNullOrEmpty(row("Name").ToString.Trim)
-
- #赋值给获取数据的字典
- out_Config(row("Name").ToString.Trim) = row("Value")
- assetValue 数据类型为泛值型数据 (GenericValue)
- #具体用处暂不了解
- #更改配置文件信息
- Config("RentPaymentWordCodingPath") =
- #去
- string.Format(Config("RentPaymentWordCodingPath").ToString,now.ToString("yyyyMM"))
- Config("RentPaymentWordCodingPath") = D:\Robot\{0}
- #生成的word路径
-
- string.Formant(A,B) 占位符{0}格式化
- #字符串转时间格式
- dtDate = convert.ToDateTime(now.ToString("yyyy-MM-dd"))
- #strStartDate = "2024-01-20"
- convert.ToDateTime(strStartDate).ToString("yyyyMMdd").ToString
- #输出 20240120
- #计算日期差 (天数)
- dteEndDate = convert.ToDateTime(now.ToString("yyyy-MM-dd"))
- (dteEndDate-convert.ToDateTime(strStartDate)).Days (int32)
(dtdDate-convert.ToDateTime(strStartDate)).Days
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。