2013年5月31日

遍历指定路径下的所有java文件

摘要: private static List<String> filePathList = new ArrayList<String>(); public static List<String> getFilePath(String dir) { // 如果dir不以文件分隔符结尾,自动添加文件分隔符 if (!dir.endsWith(File.separator)) { dir = dir + File.separator; } File dirFile = new File(dir); ... 阅读全文
posted @ 2013-05-31 10:04 Pisces011 阅读(214) 评论(0) 推荐(0) 编辑

每日一句

摘要: The difference in winning and losing is most often not quitting.赢与输的差别通常是不放弃。A good book is a best friend who never turns his back upon us.一本好书,莫逆之交。Rather than spending one's days grumbling about life,act to bring about change without delay. 与其每天抱怨生活,不如立刻行动改变现状。If youth is a defect,it is one th 阅读全文
posted @ 2013-05-31 09:54 Pisces011 阅读(245) 评论(0) 推荐(0) 编辑
2013年5月28日

从程序员到CTO的Java技术路线图

摘要: 在技术方面无论我们怎么学习,总感觉需要提升自已不知道自己处于什么水平了。但如果有清晰的指示图供参考还是非常不错的,这样我们清楚的知道我们大概处于那个阶段和水平。Java程序员高级特性反射、泛型、注释符、自动装箱和拆箱、枚举类、可变参数、可变返回类型、增强循环、静态导入核心编程IO、多线程、实体类、集合类、正则表达式、XML和属性文件图形编程AWT(Java2D/JavaSound/JMF)、Swing、SWT、JFace网路编程Applet、Socket/TCP/UDP、NIO、RMI、CORBAJava语法基础类、抽象类、接口、最终类、静态类、匿名类、内部类、异常类、编码规范Java开发环境 阅读全文
posted @ 2013-05-28 19:20 Pisces011 阅读(1504) 评论(3) 推荐(9) 编辑
2013年5月27日

jquery.autocomplete插件完美应用实例

摘要: Action方法public void queryAnnListByAjax() { voiceDefList = sysVoiceServ.querySysAnnList(voiceDef); JSONArray jsonArr = JSONArray.fromObject(voiceDefList); PrintWriter writer = null; try { writer = getResponse().getWriter(); writer.print(json... 阅读全文
posted @ 2013-05-27 23:22 Pisces011 阅读(395) 评论(0) 推荐(0) 编辑