摘要: /// <summary> /// 过滤DataTalbe 添加处理(使用hashkey 处理) 最快 /// </summary> /// <param name="dataTable"></param> /// <param name="selectedNodes"></param> /// < 阅读全文
posted @ 2024-03-31 10:02 LowKeyC 阅读(18) 评论(0) 推荐(0) 编辑
摘要: static List<dynamic> DataTableToListDynamic(DataTable dt) { List<dynamic> dynamicList = new List<dynamic>(); foreach (DataRow row in dt.Rows) { dynami 阅读全文
posted @ 2024-03-24 19:47 LowKeyC 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 一线开发人:怨别自惊千里外,论交却忆十年时。 今天半导体YMS 项目快要收尾了,我的心情有点高兴,多年来我一直保持着写作的习惯,总是想写一些什么,今天但是又不知道从何说起。自己从传统的行业转向做半导体行业开发。从电*机如软件开发到电*软件开发再到半导体软件开发。下面说说这么多年的开发过程。在这一年多 阅读全文
posted @ 2024-01-12 23:59 LowKeyC 阅读(477) 评论(0) 推荐(4) 编辑
摘要: 1.首先nutGet 进行使用 2.如果需要使用管方的Key 进行激活 3.直接上写的Demo代码 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Da 阅读全文
posted @ 2024-01-07 16:25 LowKeyC 阅读(274) 评论(0) 推荐(1) 编辑
摘要: /// <summary> /// Oracle Help 封装使用 /// </summary> /// <typeparam name="T"></typeparam> public class OracleSQLDapperHelper<T> where T : class { /// <su 阅读全文
posted @ 2023-05-25 17:05 LowKeyC 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 1 using System; 2 using System.Collections; 3 using System.Collections.Generic; 4 using System.Configuration; 5 using System.Data.SqlClient; 6 using S 阅读全文
posted @ 2023-04-16 20:41 LowKeyC 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 1 using MySql.Data.MySqlClient; 2 using System; 3 using System.Collections; 4 using System.Collections.Generic; 5 using System.Configuration; 6 using 阅读全文
posted @ 2023-04-16 20:40 LowKeyC 阅读(160) 评论(0) 推荐(0) 编辑
摘要: Map<String, List<GoodsStockModel>> groupMap = goodsStockModelNew.getSkus_list().stream(). collect(Collectors.groupingBy(GoodsStockModel::getSkuid));fo 阅读全文
posted @ 2023-03-13 17:38 LowKeyC 阅读(33) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 将序列化的json字符串内容写入Json文件,并且保存 /// </summary> /// <param name="path">路径</param> /// <param name="jsonConents">Json内容</param> private st 阅读全文
posted @ 2022-11-30 09:13 LowKeyC 阅读(195) 评论(0) 推荐(0) 编辑
摘要: import com.alibaba.fastjson.JSONObject; import com.retailo2o.server.domain.base.ResponseData; import io.swagger.annotations.Api; import org.slf4j.Logg 阅读全文
posted @ 2022-10-05 17:17 LowKeyC 阅读(48) 评论(0) 推荐(0) 编辑
摘要: LocalDateTime time1 = LocalDateTime.now();String date= time1.format(DateTimeFormatter.ofPattern("yyyyMMdd")); 阅读全文
posted @ 2022-09-20 18:01 LowKeyC 阅读(255) 评论(0) 推荐(0) 编辑
摘要: 通用的xml 转为字符串 public static string GetXMLAsString(string xmlPath) { XmlDocument doc = new XmlDocument(); doc.Load(xmlPath); // doc.Load("C:\\Users\\Adm 阅读全文
posted @ 2022-09-17 14:48 LowKeyC 阅读(761) 评论(0) 推荐(0) 编辑
摘要: 关于Spring boot 文件上传的文件 阅读全文
posted @ 2022-05-09 16:43 LowKeyC 阅读(617) 评论(0) 推荐(0) 编辑
摘要: #region 字符串去重 /// <summary> /// 字符串去重 /// </summary> /// <param name="strList"></param> /// <returns></returns> private string StringUnique(string str 阅读全文
posted @ 2022-02-09 15:37 LowKeyC 阅读(54) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// 记日志 /// </summary> /// <param name="str"></param> public void LogWrit(string str) { string SqlFileName = "1.txt"; string pluPath = A 阅读全文
posted @ 2022-01-07 11:33 LowKeyC 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 1.这样的方式试过了没用。 if (dc.ColumnName == "AccountingUnit"){newRow[dc.ColumnName] = "\t" + gridView.GetRowCellDisplayText(i, dc.ColumnName).ToString() + "";} 阅读全文
posted @ 2021-12-25 09:14 LowKeyC 阅读(218) 评论(0) 推荐(0) 编辑
摘要: java mybatis 阅读全文
posted @ 2021-06-01 10:19 LowKeyC 阅读(1234) 评论(0) 推荐(0) 编辑
摘要: .NET SM4 算法 阅读全文
posted @ 2020-12-29 17:33 LowKeyC 阅读(4345) 评论(1) 推荐(2) 编辑
摘要: 前端技术VUE 的前世今生从PC 走向移动 阅读全文
posted @ 2020-12-25 16:13 LowKeyC 阅读(449) 评论(0) 推荐(0) 编辑
摘要: //提交防疫人员申请function submitForm(){ var address = $("#address").val(); var userName= $("#userName").val() ; var sex=$("#sex").attr("data-values"); if(use 阅读全文
posted @ 2020-06-30 09:38 LowKeyC 阅读(252) 评论(0) 推荐(0) 编辑
摘要: pagehelper: helperDialect: oracle,mysql,mariadb,sqlite,hsqldb,postgresql,db2,sqlserver,informix,h2,sqlserver2012,derby params: pageNum=pageNum;pageSiz 阅读全文
posted @ 2022-04-09 10:49 LowKeyC 阅读(111) 评论(0) 推荐(0) 编辑
摘要: public static void main(String[] args) { String y1 = "2016-02";// 开始时间 String y2 = "2019-12";// 结束时间 try { Date startDate = new SimpleDateFormat("yyyy 阅读全文
posted @ 2022-04-06 16:16 LowKeyC 阅读(3649) 评论(0) 推荐(0) 编辑
摘要: <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> <version>4.4.10</version> </dependency> <dependency> <grou 阅读全文
posted @ 2021-07-19 15:02 LowKeyC 阅读(1078) 评论(0) 推荐(0) 编辑
摘要: Java中使用HttpRequest获取用户真实IP地址端口 阅读全文
posted @ 2021-06-01 10:16 LowKeyC 阅读(1419) 评论(0) 推荐(0) 编辑
摘要: @Autowired private ServerConfig serverConfig; /** * 通用下载请求 * * @param fileName 文件名称 * @param delete 是否删除 */ @ApiOperation("通用下载请求") @GetMapping("/down 阅读全文
posted @ 2021-04-03 18:52 LowKeyC 阅读(237) 评论(0) 推荐(0) 编辑
摘要: js 判断是什么浏览器、是否为谷歌浏览器 阅读全文
posted @ 2021-01-20 11:00 LowKeyC 阅读(1594) 评论(0) 推荐(0) 编辑
摘要: var OneImgUpLoad = { OneImageType: 0, OneImageData: null, AddImg: function (id) { var MyFiles = $("#" + id).prop('files'); var MyFile = MyFiles[0]; // 阅读全文
posted @ 2020-09-24 13:22 LowKeyC 阅读(827) 评论(0) 推荐(0) 编辑
摘要: 前言:经过一天半的折腾,终于把 mysql 5.7.17 版本安装上了 centos 7 系统上,把能参考的博客几乎都看了一遍,终于发现这些细节问题,然而翻了无数的文章,基本上都没有提到这些,所以小生尽量把这些细节写下来,一方面是供初学者们参考,另一方面也是对自己花这么长时间的摸索的一个总结,如有不 阅读全文
posted @ 2020-09-24 13:15 LowKeyC 阅读(229) 评论(0) 推荐(0) 编辑
摘要: import com.alibaba.fastjson.JSONObject;import com.ruoyi.common.core.constant.Constants;import lombok.extern.slf4j.Slf4j;import org.apache.http.client. 阅读全文
posted @ 2020-09-15 11:01 LowKeyC 阅读(491) 评论(0) 推荐(0) 编辑
摘要: import java.io.IOException;import java.util.Map; import com.alibaba.fastjson.JSON;import org.apache.commons.httpclient.NameValuePair;import org.apache 阅读全文
posted @ 2020-09-15 11:00 LowKeyC 阅读(480) 评论(0) 推荐(0) 编辑
摘要: C# 上传文件转化为二进制文件流。 阅读全文
posted @ 2018-10-08 15:26 LowKeyC 阅读(1175) 评论(0) 推荐(0) 编辑
有志者事竟成破釜沉舟百二秦关终属楚苦心人,天不负,卧薪尝胆,三千越甲可吞吴