摘要: package cn.sunzn.demo;import java.util.regex.Matcher;import java.util.regex.Pattern;public class Demo { public static void main(String[] args) { System.out.println(isContainChinese("中国China")); } public static boolean isContainChinese(String str) { Pattern p = Pattern.compile(... 阅读全文
posted @ 2013-07-12 16:11 sunzn 阅读(56200) 评论(0) 推荐(2) 编辑
摘要: 用真机调试程序的时候,eclipse 的 Console 总是出现如下的错误"Adb connection Error:远程主机强迫关闭了一个现有的连接"。[2013-07-12 10:37:36 - DeviceMonitor] Adb connection Error:远程主机强迫关闭了一个现有的连接。[2013-07-12 10:37:38 - DeviceMonitor] Connection attempts: 1问题出现的原因:这是 DDMS 调用 adb 引发的。经过一番搜索,发现这是 Windows 环境下,adb 的一个限制,也可以说是 bug。当手机上同 阅读全文
posted @ 2013-07-12 10:45 sunzn 阅读(52906) 评论(2) 推荐(2) 编辑