- 浏览: 9138 次
- 性别:
- 来自: 云南
最近访客 更多访客>>
最新评论
-
jossion12:
我想到一个方法不知道可以不?
把数字补齐,然后反方向变成lon ...
一个关于字串的排序算法~~ -
raomengwen:
我觉得有一个最好的办法:
思路:1.先将每个字符串赋值给一个 ...
一个关于字串的排序算法~~ -
zhy20045923:
<pre name="code" c ...
一个关于字串的排序算法~~ -
matt.u:
dch1287 写道
matt.u 写道
如果你知道hiber ...
为什么那么多人去学Hibernate还有Struts呢? -
metadmin:
hibernate在小数据量的情况下,用起来还是可以的。不过我 ...
为什么那么多人去学Hibernate还有Struts呢?
文章列表
RT!
有的时候觉得这些东西过时很快~ 到底有什么用啊
大家来探讨一下啊,不要拍砖!
- 2009-04-02 13:05
- 浏览 2082
- 评论(34)
Common lib directory
Tomcat 5.x: catalina_home/common/
Tomcat 6.x: catalina_home/lib/
Conf xml files directory: catalina_home/config/
Tomcat 6.x: 多了一个context.xml文件,这样,相关的东西(比如数据连接池等)可以在server.xml中配置,也可以在context.xml中配置。更加方便了!
- 2009-03-25 15:47
- 浏览 1029
- 评论(0)
有如下一些数据:
1-2-3-4-5
2-3-2
2-4-4-2
1-6
保存在一个文本文档中(ANSI编码格式)。要求排序成如下结果:
1-6
1-2-3-4-5
2-4-4-2
2-3-2
即以每一行的最后一个元素进行排序,如果相同再以之前一个排序。都是降序。。
有兴趣的可以试试。
package com.watersoft.file;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java ...
如果我不告诉你下面的代码里面有什么错:
for(int index = 0; index < 10; index++){
Element e = new Element("type");
String id = "id" + index;
e.setAttribute("id", id);
for(int innerIndex = 0; innerIndex < 5; index++){
Element ie = new Element("url-patter ...
Jdom 是一个很不错的Open Source Software, 提供对各类的XML文件进行解析的接口以及相关的类。
个人觉得是很不错的一个Oss,水平有限,就不在这里胡说了,有兴趣的朋友们可以到它的官网上去看看:http://www.jdom.org/
然后是,因为用着比较方便的缘故,我把它的API做成了一个.chm文件。
>>不知道怎么回事,上传不了附件好像。想要的可以联系我的邮箱:ashui_maojmin@163.com
** There is an immediately way at the end of this document. But I strongly recommended you to read this document line by line.
The approaches are:
Migrating Character Data Using a Full Export and Import
Migrating Character Data Using the ALTER DATABASE CHARACTER SET Statement
Migrating Character D ...