摘要:
Tomcat启动报错: 25-Mar-2016 10:40:43.478 SEVERE [main] org.apache.catalina.startup.Catalina.stopServer Could not contact localhost:8015. Tomcat may not be 阅读全文
摘要:
最近因为一个监控相关的项目,深入研究了一下 windows 的 远程桌面的相关知识。 1. 如何让关闭了远程桌面连接的用户,对应的 session 立即退出 windows server。 大家使用 mstsc.exe 远程桌面登录windows server时,退出时,99.99%的人会直接关闭 阅读全文
摘要:
使用 JNA 调用 dll 库,因为 dll 库是32 位的,而 jvm 是 64位的,所以发生的错误: java.lang.UnsatisfiedLinkError: Unable to load library 'xxx': Native library (win32-x86-64/ID_Fpr 阅读全文
摘要:
1. 错误1:打 jar 包执行,报错,找不到 类库的 jar 包 F:\>java -jar remoteLogin.jarException in thread "AWT-EventQueue-0" java.lang.NoClassDefFoundError: com/alibaba/fast 阅读全文
摘要:
JNA 的出现,极大的简化了原有的 JNI 技术。下面是JNA github地址:https://github.com/java-native-access/jna 1. 简单的一个例子: 原理是,通过 CLibrary extends Libarary 在其中加载系统的 DLL/so 库,并列出J 阅读全文
摘要:
转自:http://engrmosaic.uncc.edu/mosaic-anywhere/remote-desktop-file-format The new Terminal Services client (version 2600 and newer, 5.1.2600.x) introdu 阅读全文
摘要:
1. Caused by: java.lang.reflect.MalformedParameterizedTypeException 启动时报错,原因是dubbo 依赖 spring 2.5.6.SEC03,而我项目中有用spring 3.2.4.RELEASE,所以导致冲突。 在maven中把d 阅读全文
摘要:
在一个监控相关的Java项目中,需要读取windows系统的注册表,搜索到使用 JRegistery 可以解决。代码如下: /** * @author digdeep@126.com */ public class RegstryUtil { //"HKEY_LOCAL_MACHINE" publi 阅读全文
摘要:
先看下面的执行结果: (root@localhost)[(none)]mysql>show variables like 'character%'; +--------------------------+----------------------------------------------- 阅读全文
摘要:
某WEB投票程序, 使用 ip 限制和cookie限制技术,来限制每个ip每天只能投一次票,使用的是php开发,获取访问者的 ip 使用了搜狐的接口: http://txt.go.sohu.com/ip/soip 下面是如何突破 ip 限制,达到任意控制投票的 ip ,从而如破 ip 限制: pac 阅读全文