前置条件: 1、windows防火墙关闭(网上有说法防火墙导致异常,我这长关闭状态所以没试开启防火墙) 2、windows和iphone处于同意局域网络 步骤 1、屏蔽windows Proxy,只显示手机包信息 2、代理设置 设置端口号,默认8888 3、查看windows的ip地址,并设置iph ...
分类:
Windows开发 时间:
2021-05-31 22:08:17
收藏:
0 评论:
0 赞:
0 阅读:
47
(1)Activator 默认是调用无参构造函数,如果Type对象后还有参数,则会调用相应的构造方法 (2)Assembly ...
分类:
Windows开发 时间:
2021-05-31 22:04:02
收藏:
0 评论:
0 赞:
0 阅读:
28
一、概要 本系列将继《.net wpf快速入门教程》带领大家了解wpf,帮助各位在初级向中级过渡的中掌握基本该具备的能力。本系列视频长度大约在15分钟到30分钟左右,视频内容不仅仅会讲解技能还会分享面试中常见的问题。 二、详细内容 以下是视频的播放地址: https://www.bilibili.c ...
分类:
Windows开发 时间:
2021-05-31 21:56:55
收藏:
0 评论:
0 赞:
0 阅读:
28
(1)什么是程序集? (2)元数据 (3)反射的概念 (4)反射的作用 (5)语法相关 声明一个类: Type: 其获得的信息都是在一个内存空间 ******************************************************************* 以下为重点: ...
分类:
Windows开发 时间:
2021-05-31 21:48:56
收藏:
0 评论:
0 赞:
0 阅读:
20
一、案例环境 OS:WIN10 202H python -V: 3.8.5 一、安装selenium pip install selenium 二、安装chrome + chromedriver 看清楚浏览器和对应版本的chromedriver,一起下载下来。 chrome查看版本,在地址栏输入:c ...
分类:
Windows开发 时间:
2021-05-31 21:28:00
收藏:
0 评论:
0 赞:
0 阅读:
17
下载外壳程序 https://github.com/kohsuke/winsw/releases 配置文件 <service> <!-- ID of the service. It should be unique across the Windows system--> <id>FRP</id> ...
分类:
Windows开发 时间:
2021-05-31 21:22:45
收藏:
0 评论:
0 赞:
0 阅读:
22
public void FindKeyWord(string keyWord) { WebBrowser wb = new WebBrowser(); foreach (HtmlElement item in wb.Document.All) { ...
分类:
Windows开发 时间:
2021-05-31 16:07:30
收藏:
0 评论:
0 赞:
0 阅读:
13
code==‘1‘){ echo ‘查询失败‘; } else { if($ipinfo->data->region==‘广东省‘){ //Header("HTTP/1.1 301 Moved Permanently"); //你要挑战的 URL地址 //Header("Location: http://londit-53e57d6eeff96.c...
分类:
Windows开发 时间:
2021-05-31 16:03:32
收藏:
0 评论:
0 赞:
0 阅读:
9
效果图:
分类:
Windows开发 时间:
2021-05-31 16:02:22
收藏:
0 评论:
0 赞:
0 阅读:
12
//访问HttpClient 代码 public async Task<string> VerifyProxy(string url, string proxy = "", string Method = "GET") { HttpClientHandler _hch = new HttpClien
分类:
Windows开发 时间:
2021-05-31 16:01:20
收藏:
0 评论:
0 赞:
0 阅读:
13
1/**//// <summary> 2 /// 截取字符串,不限制字符串长度 3 /// </summary> 4 /// <param name="str">待截取的字符串</param> 5 /// <param name="len">每行的长度,多于这个长度自动换行</param> 6 //
分类:
Windows开发 时间:
2021-05-31 15:57:56
收藏:
0 评论:
0 赞:
0 阅读:
21
C#中为正则表达式的使用提供了非常强大的功能,这就是Regex类。这个包包含于System.Text.RegularExpressions命名空间下面,而这个命名空间所在DLL基本上在所有的项目模板中都不需要单独去添加引用,可以直接使用。 1、定义一个Regex类的实例 Regex regex =
分类:
Windows开发 时间:
2021-05-31 15:56:27
收藏:
0 评论:
0 赞:
0 阅读:
13
先安装 yarn add @typescript-eslint/parser -D 然后在.eslintrc配置文件中加入 parserOptions: { parser: '@typescript-eslint/parser', }, ...
分类:
Windows开发 时间:
2021-05-31 15:54:20
收藏:
0 评论:
0 赞:
0 阅读:
303
游戏程序的操作不外乎两种——键盘输入控制和鼠标输入控制,几乎所有游戏中都使用鼠标来改变角色的位置和方向,本文主要是讲述如何使用C#调用Windows API函数实现鼠标模拟操作的功能.首先通过结合FindWindow和FindWindowEx寻找到窗体的按钮,在通过SetCursorPos或mous
分类:
Windows开发 时间:
2021-05-31 15:53:12
收藏:
0 评论:
0 赞:
0 阅读:
20
using System; using System.Text.RegularExpressions; namespace MetarCommonSupport { /// /// 通过Framwork类库中的Regex类实现了一些特殊功能数据检查 /// public class MetarnetRegex { private static MetarnetRegex inst...
分类:
Windows开发 时间:
2021-05-31 15:51:47
收藏:
0 评论:
0 赞:
0 阅读:
13
一、String.Split方法提供了如下6个重载函数: 名称说明 String.Split (Char[]) 返回包含此实例中的子字符串(由指定 Char 数组的元素分隔)的 String 数组。 由 .NET Compact Framework 支持。 String.Split (Char[],
分类:
Windows开发 时间:
2021-05-31 15:50:34
收藏:
0 评论:
0 赞:
0 阅读:
13
Windows常用快捷键 ctrl+c:复制 ctrl+v:粘贴 ctrl+s:保存 ctrl+z:撤回 ctrl+a:全选 alt+f4:关闭 shift+delte:永久删除 windows+r:打开程序 cmd:命令行窗口 windows+e:打开我的电脑 alt+tab:切换界面 shift ...
分类:
Windows开发 时间:
2021-05-31 15:49:42
收藏:
0 评论:
0 赞:
0 阅读:
13
代理服务程序是一种广泛使用的网络应用程序。代理程序的种类非常多,根据协议不同可以分成HTTP代理服务程序、FTP代理服务程序等,而运行代理服务程序的服务器也就相应称为HTTP代理服务器和FTP代理服务器。本文将介绍用C#的Web代理服务程序代理的是HTTP协议。 一、网络代理程序的优点 代理服务所起
分类:
Windows开发 时间:
2021-05-31 15:49:13
收藏:
0 评论:
0 赞:
0 阅读:
17
用C#实现Web代理服务器 代理服务程序是一种广泛使用的网络应用程序。代理程序的种类非常多,根据协议不同可以分成HTTP代理服务程序、FTP代理服务程序等,而运行代理服务程序的服务器也就相应称为HTTP代理服务器和FTP代理服务器。本文将介绍的Web代理服务程序代理的是HTTP协议。 一、网络代理程
分类:
Windows开发 时间:
2021-05-31 15:46:03
收藏:
0 评论:
0 赞:
0 阅读:
13
找到tomcat下的bin目录下文件 setclasspath.bat 第二行加上你想运行的jdk路径即可。 set "JRE_HOME=D:\Program Files (x86)\jdk1.8.0_77" 再次启动startup.bat就会根据新jkd运行了。 ...
分类:
Windows开发 时间:
2021-05-31 15:45:13
收藏:
0 评论:
0 赞:
0 阅读:
17