摘要: public static void SaveCSV(DataTable dt, string fullPath) { var fi = new FileInfo(fullPath); if (!fi.Directory.Exists) { fi.Directory.Create(); } var 阅读全文
posted @ 2020-05-12 19:28 朱志 阅读(879) 评论(0) 推荐(0) 编辑
摘要: public void WriteLog(string strLog) { string sFilePath = AppDomain.CurrentDomain.BaseDirectory + "Log"; string sFileName = DateTime.Now.ToString("yyyy 阅读全文
posted @ 2020-05-12 19:23 朱志 阅读(1940) 评论(0) 推荐(0) 编辑
摘要: 1.首先是去百度智能云(http://ai.baidu.com/tech/face?track=cp:ainsem|pf:pc|pp:chanpin-renlianshibie|pu:renlianshibie-pinpai|ci:|kw:10002421)注册一个账号,填写有些相关的信息。 2.在 阅读全文
posted @ 2020-05-12 18:37 朱志 阅读(929) 评论(0) 推荐(1) 编辑
摘要: 1.首先添加NuGet:Quartz 2.具体代码: using Quartz; using Quartz.Impl; using System; using System.Threading.Tasks; namespace quaraz0902 { class Program { static 阅读全文
posted @ 2020-05-12 17:45 朱志 阅读(202) 评论(0) 推荐(0) 编辑
摘要: 1.首先添加NuGet:Oracle.ManagedDataAccess 2.配置连接数据库字符串:Data Source=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=***)(PORT=***))(CONNECT_DATA=(SERVICE_NAME=orc 阅读全文
posted @ 2020-05-12 17:18 朱志 阅读(252) 评论(0) 推荐(0) 编辑