
CODING LIFE
iteye_1706
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
经典扫雷游戏-入行一周年纪念
1. 从去年实习开始算起,到现在正式工作两月正好是入行一周年,在这一周年之时写个东西总要纪念一下,所以这个扫雷游戏就诞生了,虽然没有什么创新,但我还是尝试加了点我的东西在里面,开发全过程花了我两个周末的时间,今天晚上将他公布出来…… 2. 用了经典的MVC软件构加,如下图: 如上图所示显示主要类:视图层:用Swing实现,非常简单,一个Frame里两个Panel控制层:所以...2010-09-19 09:13:26 · 228 阅读 · 0 评论 -
阶段感觉和未来方向
去年九月八日开始实习算起到现在工作已经一年有余,这一年里是在忙忙碌碌中度过,现在回想起来感觉还是有好多问题值得我去思考,我只想说说技术方面。毋庸置疑基本技术上我是提高了不少,但我发现主要的问题是我学的东西太杂,一年来学了好多东西,但学的比较深的却没有,一年的经验告诉我:必须把某一块学精,这样才能使自己有足够的竞争力,才能够扩展自己的知识面,才能够更好的规划自己的未来。 ...2010-09-25 17:33:14 · 116 阅读 · 0 评论 -
Customized Utility 1: FileChangeMonitor
When we are in software developing we usually need to do some very simple things manually, for instance, we offen need to check the files under a directory is added or deleted. especially when y...2011-05-20 22:57:12 · 177 阅读 · 0 评论 -
Customized Utility 2: JarClassSearcher
In some occasion we offen need to know a Class belongs to which jar in lots of jars, for example: if we want to know org.jboss.security.SecurityAssociation refered jar under JBOSS_HOME, we all k...2011-05-22 11:25:28 · 142 阅读 · 0 评论 -
JDK Source Code & java.rmi.server.RMISocketFactory
Today's Source code analysing series I will dive into java.rmi.server.RMISocketFactory, First the UML Diagram: This Diagram containing 1 abstract Class: RMISocketFactory, and 3 Interface: RMIClientS...2011-10-31 23:14:25 · 173 阅读 · 0 评论 -
JDK Source Code & java.nio
java.nio is very useful and a pretty good supplement for java.io, today's series I will exploring java.nio key interface and class in below figures: Channel: A channel represents an open connection ...2011-11-10 23:26:19 · 216 阅读 · 0 评论 -
Java Nio Usage Demo & A example of use selectableChannel
Primary purpose of this blog is to use http://kylinsoong.iteye.com/blog/1250681 Listed API, complete a demo application: this application has two part, one is the Server, the other is Client, Client s...2011-12-06 21:42:30 · 228 阅读 · 0 评论