上一页 1 2 3 4 5 6 7 ··· 11 下一页
摘要: 开发工具:visual studio 2008 手持设备: SYMBOL MC32NO工具->连接到设备->WINCE 7.00连接设备出现bootstrap 未能加载时,试下安装Motorola MC3200c70 Windows CE 7.0 PSDK文件名:32N0c70BenPS010000 阅读全文
posted @ 2018-08-20 09:49 孤夏 阅读(2297) 评论(2) 推荐(1) 编辑
摘要: CSS三大特性—— 继承、 优先级和层叠。 继承:即子类元素继承父类的样式; 优先级:是指不同类别样式的权重比较; 层叠:是说当数量相同时,通过层叠(后者覆盖前者)的样式。 css选择符分类 首先来看一下css选择符(css选择器)有哪些? 1.标签选择器(如:body,div,p,ul,li) 2 阅读全文
posted @ 2018-08-12 13:42 孤夏 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 调用api来进行hook操作,下面的代码就可以完成功能 using System; using System.IO; using System.Reflection; using System.Runtime.InteropServices; using System.Windows.Forms; 阅读全文
posted @ 2018-07-03 09:35 孤夏 阅读(462) 评论(0) 推荐(0) 编辑
摘要: 一般来说会用到hook(钩子),即获取系统的按键或者鼠标动作,然后在系统响应之前执行自定义动作,或者直接截断这个消息, 这就是屏蔽系统热键的原理了。 首先要调用操作系统的dll文件,先引入命名空间 using System.Runtime.InteropServices; 调用操作系统动态链接库的方 阅读全文
posted @ 2018-07-03 09:32 孤夏 阅读(1602) 评论(0) 推荐(0) 编辑
摘要: 由于3.0.3,mongodb加入了SCRAM-SHA-1校验方式,需要第三方工具配合进行验证,所有Spring boot连接MongoDB时会出现用户认证失败。 解决方法: 删除原来创建的已经使用了SCRAM-SHA-1认证方式的用户 然后关闭服务器,开启认证,重启服务器!! 阅读全文
posted @ 2018-05-29 21:18 孤夏 阅读(773) 评论(0) 推荐(0) 编辑
摘要: mongodb的增删改查 1、pom包配置 pom包里面添加spring-boot-starter-data-mongodb包引用 <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId> 阅读全文
posted @ 2018-05-23 14:48 孤夏 阅读(766) 评论(0) 推荐(0) 编辑
摘要: windows 环境设置 1.sapjco3.dll 需要与 sapjco3.jar 在同一目录 2.设置系统环境变量,将sapjco3所在目录加入系统环境变量 3.根据自己的操作系统版本选择对应的sapjco3包 32位系统 例如: 新建环境变量 变量名: JAVA_SAPJCO 变量值: E:\ 阅读全文
posted @ 2018-05-07 16:18 孤夏 阅读(446) 评论(0) 推荐(0) 编辑
摘要: select sample_time,session_id,sql_id,event,sql_plan_hash_value,blocking_session from dba_hist_active_sess_history where to_char(sample_time,'yyyy/mm/d 阅读全文
posted @ 2018-04-25 21:15 孤夏 阅读(2929) 评论(0) 推荐(0) 编辑
摘要: 插入 更新 阅读全文
posted @ 2018-04-03 16:27 孤夏 阅读(5626) 评论(0) 推荐(0) 编辑
摘要: using System.Xml; //初始化一个xml实例 XmlDocument xml=new XmlDocument(); //导入指定xml文件 xml.Load(path); xml.Load(HttpContext.Current.Server.MapPath("~/file/bookstore.xml")); //指定一个节点 XmlNode root=xml.SelectS... 阅读全文
posted @ 2018-01-08 14:22 孤夏 阅读(80009) 评论(6) 推荐(12) 编辑
上一页 1 2 3 4 5 6 7 ··· 11 下一页