- 浏览: 59456 次
- 性别:
- 来自: 成都
最新评论
-
jimmycheng:
讨论个问题: 目前我碰到这样的,就是比如;TestUse ...
json转为java的vo对象
文章列表
Class IOUtils
- 博客分类:
- Java 学习笔记
public class IOUtilsextends java.lang.ObjectGeneral IO stream manipulation utilities.
This class provides static utility methods for input/output operations.
closeQuietly - these methods close a stream ignoring nulls and exceptions
toXxx/read - these methods read data from a stream
write - thes ...
- 2009-11-26 09:03
- 浏览 1107
- 评论(0)
1.文件内容拷贝:
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.io.Writer;
import org.apache.commons.io.FileUtils;
import org.apache.commons.io.IOUtils;
publicclass FileCopyExample {
publicstaticvoid main(String[] args) {
...
- 2009-11-26 09:01
- 浏览 2686
- 评论(0)
用value代替innerHTML才取的到刚输入的值。
之前竟然没有注意到这个问题,⊙﹏⊙b汗
- 2009-11-06 16:34
- 浏览 847
- 评论(0)
本站文章中使用了 pre 格式输出 代码。 而浏览器默认是强制不换行输出 pre 里的内容。这样的话,代码一长就出现了撑到页面外部的样子。在之前我都是有意的在代码里强制换行... 累啊. 今天有意的google了下,找到了:
pre {
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: b ...
- 2009-11-05 12:24
- 浏览 1381
- 评论(0)
css20.zip
DHTML_手册
flex样式表详解
iBATIS-SqlMaps-2_cn
iBATIS.in.Action.Jan.2007.eBook-BBL.pdf.zip
jQueryDocXML2CHM-090223.zip
JScript.zip
Struts中文帮助.zip
spring2.0-reference_final_zh_cn.chm
JSTL_in_Action
Ext_Gui_Builder
Ext 2.0 doc
php_manual_zh
- 2009-11-03 13:06
- 浏览 998
- 评论(0)
LoadModule weblogic_module modules/mod_wl_22.so
<Location /ecexpress> SetHandler weblogic-handler WebLogicCluster 192.168.85.76:7001,192.168.85.76:7002 Idempotent OFF Order Allow,Deny Allow from all Debug All DebugConfigInfo ON WLSocketTimeoutSecs 10</Location>
保留2个 ...
- 2009-10-28 09:21
- 浏览 1546
- 评论(0)
级别: 中级
成 富 (chengfbj@cn.ibm.com), 软件工程师, IBM 中国软件开发中心
2008 年 7 月 15 日
Comet 是一种新的 Web 应用架构。基于这种架构开发的应用中,服务器端会主动以异步的方式向客户端程序推送数据,而不需要客户端显式 ...
- 2009-10-26 13:58
- 浏览 944
- 评论(0)
周 婷 (zhouting@cn.ibm.com), 软件工程师, IBM 中国软件开发技术实验室
2007 年 8 月 31 日
很多应用譬如监控、即时通信、即时报价系统都需要将后台发生的变化实时传送到客户端而无须客户端不停地刷新、发送请求。本文首先介绍、 ...
- 2009-10-26 13:49
- 浏览 634
- 评论(0)
相关文章:
Struts1.2.4学习心得!(七)
面试题目
struts学习笔记(标签二)
推荐圈子: struts2
更多相关推荐 logic:iterate
logic:iterate标记用于在页面中创建一个循环,以此来遍历如数组,Collection,Map这样的对象。该标记的功能强大, ...
- 2009-10-20 00:37
- 浏览 703
- 评论(0)
ActionForm:
public List checkResultList = new AutoArrayList(SourceCodeCheckResult.class);
public List getCheckResultList() {
return checkResultList;
}
public void setCheckResultList(List checkResultList) {
this.checkResultList.clear();
this.checkResultList.addAll(checkResultList ...
- 2009-10-19 16:38
- 浏览 1013
- 评论(0)
public boolean updateCheckRusultList(final List updateData) {
try{
getSqlMapClientTemplate().execute(new SqlMapClientCallback() {
public Object doInSqlMapClient(SqlMapExecutor executor)
throws SQLException {
executor.startBatch();
for (Iterator i2=updateData.iterator ...
- 2009-10-19 16:33
- 浏览 2497
- 评论(0)