上一页 1 2 3 4 5 6 7 8 ··· 18 下一页

2021年6月8日

Winfrom学习(三)--登陆记录用户信息

摘要: 参考链接:https://blog.csdn.net/huangshunle/article/details/7281683 1、创建用户类 public class User { private int userId; private string faceId; private string u 阅读全文

posted @ 2021-06-08 16:30 七七2020 阅读(138) 评论(0) 推荐(0) 编辑

Winfrom学习(二)--Textbox无法自动弹出键盘

摘要: 参考链接:https://www.cnblogs.com/techdreaming/p/9810172.html 在主Form中添加 var asForm = System.Windows.Automation.AutomationElement.FromHandle(this.Handle); 阅读全文

posted @ 2021-06-08 16:25 七七2020 阅读(57) 评论(0) 推荐(0) 编辑

particles.js在Vue中运用

摘要: 参考链接: https://www.cnblogs.com/mmzuo-798/p/9908893.htmlhttps://blog.csdn.net/qq_21567385/article/details/108229055 阅读全文

posted @ 2021-06-08 16:20 七七2020 阅读(177) 评论(0) 推荐(0) 编辑

2021年5月7日

c# json转成类对象

摘要: 1、引用 using System.Web.Script.Serialization; 2、定义类 class FaceCallback { public string device_id { get; set; } public int pass_status { get; set; } publ 阅读全文

posted @ 2021-05-07 11:26 七七2020 阅读(3413) 评论(0) 推荐(0) 编辑

2021年4月13日

Winform学习(一)——页面的切换

摘要: 有时需要创建一个主窗体,然后切换不同的页面,可以创建一个公共的Panel,然后不同的页面都显示在这个Panel中。 1、Form主窗体中添加Panel控件,修改name为mainPanel; 2、添加一个新的用户控件Test.cs. 3、显示代码。每次都会重新创建这个窗体显示。 mainPanel. 阅读全文

posted @ 2021-04-13 21:11 七七2020 阅读(3993) 评论(0) 推荐(0) 编辑

2021年4月7日

c#使用HttpListener监听post及get请求

摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System. 阅读全文

posted @ 2021-04-07 09:19 七七2020 阅读(4091) 评论(0) 推荐(0) 编辑

2021年4月1日

java post请求form表单格式发送数据,ContentType=multipart/form-data

摘要: /** * post请求form表单格式发送数据 * multipart/form-data * @param url 接口地址 * @param param 参数数组 * @return 返回结果 * @throws IOException */ public static String send 阅读全文

posted @ 2021-04-01 10:17 七七2020 阅读(3888) 评论(0) 推荐(0) 编辑

2021年1月15日

java-jxls根据模板导出excel(一)

摘要: 说明:本文是jxls根据模板生成Excel表格到指定目录,之后调用方法下载。 使用版本:jxls V2.4.7 excel模板版本:97-2003版本 jxls官网地址:https://jxls.sourceforge.net/index.html 1、pom引入 <dependency> <gro 阅读全文

posted @ 2021-01-15 18:05 七七2020 阅读(1288) 评论(0) 推荐(0) 编辑

2021年1月5日

网站配置SSL证书后websocket连接问题

摘要: 网站配置SSL证书后,网址访问使用https://访问,使用原来的websocket连接ws://ip+port/websocket不能访问。 修改为wss://域名/websocket 在nginx.conf中配置 在server中加配置,然后重启nginx服务 server { listen 4 阅读全文

posted @ 2021-01-05 09:48 七七2020 阅读(1140) 评论(0) 推荐(0) 编辑

2020年12月18日

Apache配置自定义404界面

摘要: 参考链接:https://blog.csdn.net/altitude_/article/details/103376414 配置httpd.conf文件 2.1 找到 rewrite_module ,将注释取消 2.2 找到ErrorDocument,将注释取消 阅读全文

posted @ 2020-12-18 11:03 七七2020 阅读(326) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 ··· 18 下一页

导航