摘要:
cmd下键入control keymgr.dll 阅读全文
摘要:
选中文字大写:ctrl+shift+x小写:ctrl+shift+y 阅读全文
摘要:
需要清除%ecliplseworkspace%/.metadata/.plugins/org.eclipse.debug.core/.launches/*.下的所有文件,才能正常运行。 阅读全文
摘要:
错误600 某操作处于挂起状态。错误601 检测到一个无效端口句柄。错误602 指定端口已经打开。错误603 呼叫方缓冲区太小。错误604 指定了错误的信息。错误605 无法设置端口信息。错误606 无法连接指定端口。错误607 检测到无效事件。错误608 指定了一个不存在的设备。错误609 设备类型不存在。错误610 缓冲区无效。错误611 路由不可用。错误612 路由没有分配。错误613 指定了无效的压缩。错误614 缓冲区不足。错误615 没有找到端口。错误616 某异步请求处于挂起状态。错误617 端口或设备已经断开。错误618 端口没有打开。错误619 不能建立到远程计算机的连接,因 阅读全文
摘要:
1 <context-param> 2 <param-name> contextConfigLocation</param-name > 3 <param-value> 4 file:${home}${file.separator}amn_sms${file.separator} config${file.separator}context.xml 5 </param-value> 6 </context-param> 7 <listener> 8 ... 阅读全文
摘要:
1 import java.io.File; 2 import java.io.FileInputStream; 3 import java.io.IOException; 4 import java.io.InputStream; 5 import java.util.Properties; 6 7 public class PropertiesUtil { 8 9 private Properties appProperties = new Properties();10 11 /**12 * 加载文件路径13 */14 public vo... 阅读全文
摘要:
1 import java.io.IOException; 2 import sun.misc.BASE64Decoder; 3 import sun.misc.BASE64Encoder; 4 5 public class Base64Util { 6 private static BASE64Encoder BASE64Encoder = new BASE64Encoder(); 7 8 private static BASE64Decoder BASE64Decoder = new BASE64Decoder(); 9 10 /* 加密 */11 p... 阅读全文
摘要:
1 import java.io.IOException; 2 import java.security.MessageDigest; 3 4 public class MD5Digestor { 5 6 public static String getMd5(String content) { 7 try { 8 MessageDigest md = MessageDigest. getInstance("MD5"); 9 byte[] results = md.digest(content.getBytes())... 阅读全文
摘要:
1 import java.security.MessageDigest; 2 import java.security.NoSuchAlgorithmException; 3 4 public class SHA1 { 5 public String Encrypt(String strSrc) { 6 MessageDigest md = null; 7 String strDes = null; 8 9 byte[] bt = strSrc.getBytes();10 try {1... 阅读全文