上一页 1 2 3 4 5 6 7 8 9 ··· 15 下一页
摘要: http数据包格式及Java模拟http客户端发请求 不管什么请求请求头后面都要有两个\n换行 get请求的请求头Content-Length不为0时,请求数据包和POST差不多 post请求注意请求头Content-Length为body的长度 java socket发送和接收必须时不同的线程 如 阅读全文
posted @ 2022-12-22 10:18 明月心~ 阅读(523) 评论(0) 推荐(0)
摘要: C# 反序列化,支持基本数据类型处理 代码 public class ConvertUtils { /// <summary> /// 对象映射 /// </summary> /// <param name="obj"></param> /// <param name="formatting"></ 阅读全文
posted @ 2022-12-13 20:02 明月心~ 阅读(98) 评论(0) 推荐(0)
摘要: C# 文件遍历 代码 public static class FileUtils { // 测试一下 public static void TestGetCurrentFileList() { var fs = GetFileList(Environment.CurrentDirectory, na 阅读全文
posted @ 2022-12-13 13:16 明月心~ 阅读(463) 评论(0) 推荐(0)
摘要: C# winform统一异常处理 参考:https://www.easck.com/cos/2022/0920/1029476.shtml 源码 using PersistenceLayer; using System; using System.Collections.Generic; using 阅读全文
posted @ 2022-12-08 09:53 明月心~ 阅读(327) 评论(0) 推荐(1)
摘要: VPN网络下maven报错“Could not transfer artifact xxx from/to xxx” 解决方案 子安 场景 settings.xml中的镜像地址来自VPN,部分示例如下: <mirror> <id>xx-repository-public</id> <mirrorOf 阅读全文
posted @ 2022-11-22 13:08 明月心~ 阅读(1) 评论(0) 推荐(0)
摘要: docker国内镜像加速地址 设置镜像地址 vim /etc/docker/daemon.json { "registry-mirrors": [ "https://0nmhlrxm.mirror.aliyuncs.com", "https://registry.docker-cn.com", "h 阅读全文
posted @ 2022-11-08 08:59 明月心~ 阅读(1649) 评论(0) 推荐(0)
摘要: Docker快速安装DM达梦数据库环境、登录和创建用户 子安 官网安装步骤:https://eco.dameng.com/document/dm/zh-cn/start/dm-install-docker.html 下载地址: https://eco.dameng.com/download/ 拉取镜 阅读全文
posted @ 2022-11-01 17:24 明月心~ 阅读(3938) 评论(1) 推荐(1)
摘要: C# HTTP工具HttpHelper 新建文件名HttpHelper.cs 代码如下: using Newtonsoft.Json; using System; using System.Collections.Generic; using System.IO; using System.Net; 阅读全文
posted @ 2022-10-25 14:56 明月心~ 阅读(1541) 评论(0) 推荐(0)
摘要: Oracle使用expdp/impdp实现数据库迁移 导出 0. 准备导出路径 cd /u01/app/oracle mkdir bak && chmod 777 bak 1、创建目录(sqlplus) create directory bak as '/u01/app/oracle/bak'; 2 阅读全文
posted @ 2022-10-24 09:21 明月心~ 阅读(310) 评论(0) 推荐(0)
摘要: 力扣leetcode 第2394题 求工作时间不达标的员工 select employee_id from ( select DISTINCT e.employee_id, e.needed_hours * 60 as needed_hours, ifnull((select sum(timesta 阅读全文
posted @ 2022-10-20 08:37 明月心~ 阅读(56) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 ··· 15 下一页