当前位置:   article > 正文

Uipath知识点总结记录_uipath中的参数怎么获取配置文件的内容

uipath中的参数怎么获取配置文件的内容

一、怎么读取配置文件信息

案例一:

1、ConfigFile = "config.xlsx"                                  (配置文件路径,Excel表)

2、ConfigSheets = {"settings","contants"}

  1. out_Config = new Dictionary(of String, object)
  2. #读取配置文件信息配置为字典数据
  3. ForEach sheet in configsheet:
  4. #读取sheet中的数据输出到数据表
  5. read sheet → configTable(变量类型dataTable)
  6. #遍历数据表
  7. ForEach row in configTable
  8. #当 'name' 列数值不为空时
  9. NOT String.IsNullOrEmpty(row("Name").ToString.Trim)
  10. #赋值给获取数据的字典
  11. out_Config(row("Name").ToString.Trim) = row("Value")

 案例二:

  1. assetValue 数据类型为泛值型数据 (GenericValue)
  2. #具体用处暂不了解

读取配置文件信息:

  1. #更改配置文件信息
  2. Config("RentPaymentWordCodingPath") =
  3. #去
  4. string.Format(Config("RentPaymentWordCodingPath").ToString,now.ToString("yyyyMM"))
  5. Config("RentPaymentWordCodingPath") = D:\Robot\{0}
  6. #生成的word路径
  7. string.Formant(A,B) 占位符{0}格式化

二:日期格式处理

  1. #字符串转时间格式
  2. dtDate = convert.ToDateTime(now.ToString("yyyy-MM-dd"))
  3. #strStartDate = "2024-01-20"
  4. convert.ToDateTime(strStartDate).ToString("yyyyMMdd").ToString
  5. #输出 20240120
  6. #计算日期差 (天数)
  7. dteEndDate = convert.ToDateTime(now.ToString("yyyy-MM-dd"))
  8. (dteEndDate-convert.ToDateTime(strStartDate)).Days (int32)

(dtdDate-convert.ToDateTime(strStartDate)).Days

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/326139
推荐阅读
相关标签
  

闽ICP备14008679号