摘要: @echo off set fn=C:\Users\admin\AppData\Local\Packages\Microsoft.Windows.ContentDeliveryManager_cw5n1h2txyewy\LocalState\Assets for /f "tokens=*" %%i 阅读全文
posted @ 2021-11-10 13:32 浅绿色i 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 安装log4net 项目 - 管理Nuget程序包,在浏览框中输入 log4net - 回车 - 选择 log4net - 安装。 添加log4net.config 在工程目录下添加log4net.config文件, 设置log4net.config的文件属性,自动把log4net.config的内 阅读全文
posted @ 2021-11-08 17:09 浅绿色i 阅读(1075) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/zjfjava/p/12297863.html https://www.cnblogs.com/kevingrace/p/8269955.html 1.start nginx //启动nginx的命令。2.nginx -s quit //此方式停止步骤 阅读全文
posted @ 2021-11-07 20:59 浅绿色i 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 开始以为是IIS占用了80端口,但是我们IIS 80端口程序已经被我关闭了啊,网上找的各种方式都试了还是不行,最后发现居然是"SQL Server Reporting Services (MSSQLSERVER)"这个服务程序搞的鬼,如果电脑同时安装了SQL Server数据库服务程序,这个服务会占 阅读全文
posted @ 2021-11-05 21:09 浅绿色i 阅读(33) 评论(0) 推荐(0) 编辑
摘要: CentOS7安装Nginx 文章转自:https://www.cnblogs.com/liujuncm5/p/6713784.html 安装所需环境 Nginx 是 C语言 开发,建议在 Linux 上运行,当然,也可以安装 Windows 版本,本篇则使用 CentOS 7 作为安装环境。 一. 阅读全文
posted @ 2021-11-01 11:20 浅绿色i 阅读(544) 评论(0) 推荐(0) 编辑
摘要: 转载于:https://www.itspeeding.com/article/28 1、web页面 1 <html lang="en" xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <meta charset="utf-8" /> 4 <title 阅读全文
posted @ 2021-10-23 17:12 浅绿色i 阅读(48) 评论(0) 推荐(0) 编辑
摘要: var ids = '111,222,333,333,444,111'; // 将字符串转化成数组 var idsArr = ids.split(","); //[111,222,333,333,444,111] // 数组去重 var uniqueIds = unique(idsArr); //[ 阅读全文
posted @ 2021-10-09 11:21 浅绿色i 阅读(720) 评论(0) 推荐(0) 编辑
摘要: Nginx常用命令: 验证配置是否正确: nginx -t 查看Nginx的详细的版本号:nginx -V 查看Nginx的简洁版本号:nginx -v 启动Nginx:start nginx 快速停止或关闭Nginx:nginx -s stop 正常停止或关闭Nginx:nginx -s quit 阅读全文
posted @ 2021-09-27 14:51 浅绿色i 阅读(119) 评论(0) 推荐(0) 编辑
摘要: String arg0 = "Bob"; String arg1 = "Alice"; System.out.println("hello," + arg0 + ". I am " + arg1 + "."); //StringBuilder.append StringBuilder builder 阅读全文
posted @ 2021-09-11 19:06 浅绿色i 阅读(249) 评论(0) 推荐(0) 编辑
摘要: ajax 请求解析josn 其实代码很简单,主要是怎么模拟测试数据,例如在GitHub page上建个data.json我们请求 https://naiop.github.io/test/data.json <!DOCTYPE html> <html> <head> <meta charset="U 阅读全文
posted @ 2021-09-02 13:06 浅绿色i 阅读(35) 评论(0) 推荐(0) 编辑