上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 21 下一页
摘要: 1 下载openjdk https://adoptopenjdk.net/ 2 解压 3 在解压后的目录中 新建批处理文件 color 0a ::删除JAVA_HOME wmic ENVIRONMENT where "name='JAVA_HOME'" delete ::删除ClASSPATH wm 阅读全文
posted @ 2020-02-02 10:17 wolbo 阅读(346) 评论(0) 推荐(0)
摘要: private int Execute(string str, bool silence = false) { int result; try { Console.WriteLine("nuget " + str); Process process = this.ExecuteCMD(str); S 阅读全文
posted @ 2020-01-15 14:17 wolbo 阅读(540) 评论(0) 推荐(0)
摘要: 1 官方文档 dotnet 可代替nuget.exe https://docs.microsoft.com/zh-cn/nuget/install-nuget-client-tools 低版本的nuget 缺少一些参数 2 安装mono https://www.mono-project.com/do 阅读全文
posted @ 2020-01-15 13:30 wolbo 阅读(1514) 评论(0) 推荐(1)
摘要: 1 通过包管理器安装 a 添加包源 最新发行版 yum install -y gcc-c++ make curl -sL https://rpm.nodesource.com/setup_13.x | sudo -E bash - 稳定版 yum install -y gcc-c++ make cu 阅读全文
posted @ 2020-01-10 16:28 wolbo 阅读(176) 评论(0) 推荐(0)
摘要: git config --global credential.helper store git credential-store store protocol=http host=10.24.21.1 username=xxx password=xxx 参考: https://unix.stacke 阅读全文
posted @ 2020-01-10 15:05 wolbo 阅读(584) 评论(0) 推荐(0)
摘要: 环境 centos 7 dotnet core 2.1.4 错误信息: libgit2-xxxxxxx: cannot open shared object file: No such file or directory 原因: 找不到动态库 libgit2-xxxxxxx.so libgit2-x 阅读全文
posted @ 2020-01-10 11:26 wolbo 阅读(257) 评论(0) 推荐(0)
摘要: 95% emitting index-html-webpack-plugin Cannot read property 'default' of undefinedTypeError: Cannot read property 'default' of undefined at compiler.h 阅读全文
posted @ 2020-01-07 15:43 wolbo 阅读(1926) 评论(0) 推荐(0)
摘要: 1 json string 转 JSONObject try { JSONObject jsonObject = new JSONObject("{\"phonetype\":\"N95\",\"cat\":\"WP\"}"); }catch (JSONException err){ Log.d(" 阅读全文
posted @ 2019-12-28 18:29 wolbo 阅读(4984) 评论(0) 推荐(0)
摘要: 场景 //防止sql注入 Stream<String> idList =accDocIDList.stream().map((x) -> { if (x.matches("[^a-zA-Z0-9-]")) { //throw new BalanceException("xxx-xxx", "hehe 阅读全文
posted @ 2019-12-28 16:38 wolbo 阅读(2967) 评论(0) 推荐(0)
摘要: https://sqlbackupandftp.com/blog/how-to-backup-and-restore-postgresql-database 1 备份 pg_dump -v -f gscloud1912 -C -h 10.24.12.143 -U gscloud1912 gsclou 阅读全文
posted @ 2019-12-28 15:04 wolbo 阅读(518) 评论(0) 推荐(0)
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 21 下一页