
about CS
iteye_2958
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ubuntu alternatives configuration
I installed several jdk version into my ubuntu system.I modified the '.bashrc' or the '.bash_profile' files and set the JAVA_HOME properties ,but it didn't work.In ubuntu , set the right like this (...2006-11-20 16:11:00 · 132 阅读 · 0 评论 -
Installing Tomcat on Ubuntu
http://doc.gwos.org/index.php/Install_tomcat_5.5Versions: SDK: 1.5 JRE: 1.5 Tomcat: 5.5 Step 1 – Install JRE and SDK Use the advice here to install these packages You can verify ...2006-11-23 16:13:38 · 95 阅读 · 0 评论 -
Design a message format
Where there is communication,there is message exchange.In a SMS(short message system),there are binary stream based protocols,such as SMPP,SGIP,CNGP,SMGP,etc.Using binary messages results in efficie...2006-12-25 20:46:22 · 129 阅读 · 0 评论 -
解决CVS在commit过程中出错问题
遇到了几次commit过程中出错,原因是我的PC上的版本不是最新版本,就进行了commit操作,这样就会有问题。在Eclipse的help中有一条建议如下:It is considered a more ideal workflow to always update before committing in order to ensure that you have the latest st...2007-02-28 16:04:37 · 724 阅读 · 0 评论 -
[转贴]Java中四种XML解析技术之不完全测试
本文来自于:http://www.blogjava.net/rosen/archive/2005/08/12/9950.html在平时工作中,难免会遇到把xml作为数据存储格式。面对目前种类繁多的解决方案,哪个最适合我们呢?在这篇文章中,我对这四种主流方案做一个不完全评测,仅仅针对遍历xml这块来测试,因为遍历xml是工作中使用最多的(至少我认为)。 预备 测试环境: amd毒龙...2007-03-01 08:05:31 · 123 阅读 · 0 评论 -
dom4j解析xml文件遇到的java.lang.NoClassDefFoundError
错误出在List list = document.selectNodes("//root/author");缺少包解决办法:dom4j的解压包lib目录下把jaxen.jar放到类路径里去2007-03-01 11:42:03 · 221 阅读 · 0 评论 -
String 与 dom4j
If you have some XML as a String you can parse it back into a Document again using the helper method DocumentHelper.parseText() java 代码String text = " James "; Document document = DocumentHelper.pa...2007-03-01 11:58:59 · 177 阅读 · 0 评论 -
CVS commit过程中出现 commit error,sticky tag is not a branch
一直没有办法提交,报错“sticky tag is not a branch”,我猜想已经表明一个版本的结束了,是否是因为tag as a version了?所以我重新建立了一个branch,就ok了...2007-03-02 13:39:55 · 473 阅读 · 0 评论 -
Installing Apache Http Server on Linux
Overview for the impatient Download $ lynx http://httpd.apache.org/download.cgi Extract $ gzip -d httpd-NN...2007-05-09 08:13:16 · 170 阅读 · 0 评论