| « | 五月 2012 | » | ||||
|---|---|---|---|---|---|---|
| 一 | 二 | 三 | 四 | 五 | 六 | 日 |
| 1 | 2 | 3 | 4 | 5 | 6 | |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 | |||
tomcat5.5.数据库连接池配置,寻找5.5日志配置方法 查看全文
jstl与<%...%>写法的交互 查看全文
将请求中的JSP转化为jsp后缀 查看全文
列出常用的输出格式含义 查看全文
转载log4j配置文件全部写法
http://www.cybercorlin.net/article.php?story=20040510110725869
查看全文
lucene是java编写的全文检索框架,最新版本已支持中文,它分为创建索引和根据索引查找两部分,匹配规则可选择。编写最简单例子一个
查看全文
HWPFFileSystem files = new HWPFFileSystem();
try
{
String str =
"This is our first doc file Jojiiiiiiiiiiii....We Got IT..But not sure !!";
str += "rn这是我的第一个doc例子!";
byte b[] = str.getBytes();
ByteArrayInputStream bais = new ByteArrayInputStream(b);
POIFSFileSystem fs = new POIFSFileSystem();
DirectoryEntry directory = fs.getRoot();
DocumentEntry de = directory.createDocument("WordDocument", bais);
FileOutputStream ostream = new FileOutputStream("foo.doc");
fs.writeFilesystem(ostream);
bais.close();
ostream.close();
}
catch (IOException e)
{
e.printStackTrace();
}















