上一页 1 2 3 4 5 6 7 8 ··· 43 下一页
  2016年7月22日
摘要: Java的文件操作太基础,缺乏很多实用工具,比如对目录的操作,支持就非常的差了。如果你经常用Java操作文件或文件夹,你会觉得反复编写这些代码是令人沮丧的问题,而且要大量用到递归。 下面是的一个解决方案,借助Apache Commons IO工具包(commons-io-1... 阅读全文
posted @ 2016-07-22 16:51 cnxo 阅读(402) 评论(0) 推荐(0) 编辑
摘要: 题目Design an algorithm and write code to remove the duplicate characters in a string without using any additional buffer. NOTE: One or two add... 阅读全文
posted @ 2016-07-22 14:40 cnxo 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 说明:Servlet的其他相关类: ServletConfig – 代表Servlet的初始化配置参数。 ServletContext – 代表整个Web项目。 ServletRequest – 代表用户的请求。 ServletResponse – 代表用户的响应。 本篇博... 阅读全文
posted @ 2016-07-22 13:23 cnxo 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 今天给大家推荐的文章是有关Java基本概念的,掌握好这些基本概念对学习J2SE、J2EE、J2ME都很重要,也能更好地理解Java的精髓,初学者要注意啦! ▶Java概述: 目前Java主要应用于中间件的开发(middleware)---处理客户机与服务器之间的通信技术,早期的实... 阅读全文
posted @ 2016-07-22 02:31 cnxo 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 1、James Gosling 1983 年,Gosling 获得了加州大学的计算机科学学士学位。1990 年,他获得了卡内基梅隆大学的计算机科学博士学位,师从 BobSproull。在攻读博士期间,他自己开发了一款 emacs,叫 Gosling Emacs(Gosmacs),在... 阅读全文
posted @ 2016-07-22 02:24 cnxo 阅读(435) 评论(0) 推荐(1) 编辑
摘要: Servlet的其他相关类: ServletConfig – 代表Servlet的初始化配置参数。 ServletContext – 代表整个Web项目。 ServletRequest – 代表用户的请求。 ServletResponse – 代表用户的响应。 HttpSessio... 阅读全文
posted @ 2016-07-22 02:14 cnxo 阅读(186) 评论(0) 推荐(0) 编辑
  2016年7月20日
摘要: 题目: Write code to reverse a C-Style String. (C-String means that “abcd” is represented as five characters, including the null character.)写代码... 阅读全文
posted @ 2016-07-20 16:21 cnxo 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 说明:创建Servlet的方式,在上篇博客中,已经用了方式1(实现Servlet接口),接下来本节讲的是另外2种方式。 上篇博客地址:http://blog.csdn.net/qq_26525215/article/details/51942252简单的用户注册功能(我们设置了所以... 阅读全文
posted @ 2016-07-20 16:08 cnxo 阅读(512) 评论(0) 推荐(0) 编辑
  2016年7月19日
摘要: 本节讲解决中文乱码问题的4种方法。 还有更好的方法,也就是用过滤器,这里就不演示了,博主目前也不会~呼♪(^∇^*)~过段时间才会学。servlet生命周期演示:index.jsp: 演示servlet技术 ... 阅读全文
posted @ 2016-07-19 14:43 cnxo 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 题目: Implement an algorithm to determine if a string has all unique characters. What if you can not use additional data structures?实现一个算法来判断一个... 阅读全文
posted @ 2016-07-19 13:26 cnxo 阅读(164) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 43 下一页