上一页 1 2 3 4 5 6 7 ··· 44 下一页
摘要: 如下图: 解决办法: 更新 unlocker, unlocker 下载地址:https://github.com/paolo-projects/unlocker/releases 更新过程,先卸载旧版,再安装新版,依次执行: win-uninstall.cmd 和 win-install.cmd ( 阅读全文
posted @ 2020-06-01 23:58 一菲聪天 阅读(5212) 评论(0) 推荐(0) 编辑
摘要: 最近使用 C# 调用 dll 中的方法,本来允许的好好的,不过因为后面为了兼容不同的文件路径,就在标注上添加了 CharSet = CharSet.Auto, 添加后,方法一调用就报错,提示 “The parameter is incorrect” (该参数不正确)。 既然系统提示参数不正确,那肯定 阅读全文
posted @ 2020-05-16 19:08 一菲聪天 阅读(1232) 评论(0) 推荐(0) 编辑
摘要: 最近使用 C# 调用 dll 中的 UpdateDriverForPlugAndPlayDevices() 方法去安装驱动,遇到了 “The system cannot find the file specified” 问题, 看着错误提示,是指系统没有找到指定文件,但是我检查硬盘,该文件确实存在, 阅读全文
posted @ 2020-05-16 18:19 一菲聪天 阅读(2509) 评论(0) 推荐(0) 编辑
摘要: 命令: yum remove php* php* 将 php 相关的全部删除掉 参考: Removing PHP 阅读全文
posted @ 2020-04-15 09:05 一菲聪天 阅读(1442) 评论(0) 推荐(0) 编辑
摘要: 第一步: yum remove mariadb mariadb-server 卸载 mariadb 的软件部分 第二步: rm -rf /var/lib/mysql 删除数据目录,上述为默认的数据目录,如果有修改过,则先查看配置文件 /etc/my.cnf 第三步: rm /etc/my.cnf 删 阅读全文
posted @ 2020-04-15 08:58 一菲聪天 阅读(3608) 评论(0) 推荐(0) 编辑
摘要: 命令如下: winsat disk 默认查询的是 C 盘,如果需要测试其他盘,可以使用: winsat disk -drive 盘符 注意:需要提权,以管理员的身份执行以上命令,否则 cmd 窗口会一闪而过 执行的结果如下: 从上到下,分别是:随机读取速度, 顺序读取速度, 顺序写入速度。参考: 利 阅读全文
posted @ 2020-04-03 20:11 一菲聪天 阅读(16800) 评论(0) 推荐(2) 编辑
摘要: 类和对象的关系: 在现实生活中,可以理解为,先有对象,然后根据对象的共性抽象出一个类型,一个类; 而在面向对象编程中,则是先定义好类,然后用类来生成对象,类就是对象的模板; 现实生活中,万物均为对象,但代码中的类却未必能在现实生活中找到一一对应的,如一些辅助类,或者抽象类等。 面向对象编程,就是使用 阅读全文
posted @ 2020-03-20 15:57 一菲聪天 阅读(451) 评论(0) 推荐(0) 编辑
摘要: 代码: public static Boolean IsAdministrator() { System.Security.Principal.WindowsIdentity identity = System.Security.Principal.WindowsIdentity.GetCurren 阅读全文
posted @ 2020-03-12 15:05 一菲聪天 阅读(821) 评论(0) 推荐(0) 编辑
摘要: 在开机的时候按住 Shift 键不放开,出现 GNU GRUB 界面时选择 Advanced options for Ubuntu,然后再选择 Ubuntu, with Linux 4.15.0-72-generic (recovery mode). 更多信息,请查看:Ubuntu 18.04 进入 阅读全文
posted @ 2020-01-04 17:09 一菲聪天 阅读(7518) 评论(0) 推荐(0) 编辑
摘要: 使用 GetPrivateProfileString() 方法可以方便的读取 ini 格式文件中的内容,如: [section] tommy = worker 使用 C# 读取如下: 1. 先引入 GetPrivateProfileString() 方法 [DllImport("kernel32.d 阅读全文
posted @ 2019-12-22 16:49 一菲聪天 阅读(991) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 44 下一页