- 浏览: 368092 次
- 性别:
- 来自: 深圳
最新评论
-
hijackwust:
最次的方法,没有之一
让一个工程并存jar包不同版本 -
手写白:
...
让一个工程并存jar包不同版本 -
wqsmd1:
连接不会关,怎么弄
Struts2 + JasperReports4 + DB2 Demo -
tntxia:
楼主,怎么没有放keymaker.jar这个包啊
Aqua Data Studio 破解及解决乱码说明 -
mrsea2010:
楼主,按照你的方法,点击联接,我都不能显示出页面,直接报404 ...
Struts2 + JasperReports4 + DB2 Demo
文章列表
为什么要用日志(
Log
)
?
这个……就不必说了吧。
为什么不用
System.out.println()?
功能太弱;不易于控制。如果暂时不想输出了怎么办?如果想输出到文件怎么办?如果想部分输出怎么办?……
为什么同时使用
commons-logging
和
Log4j?
为什么不仅使用其中之一?
Commons-loggin
的目的是为“所有的Java
日志实现”提供一个统一的接口,它自身的日志功能平常弱(只有一个简单的SimpleLog?
),所以一般不会单独使用它。
Log4j
的功能非常全面强大,是 ...
开发一个优秀的网站并非易事,一个面面俱到并且美观的网站,即使对于经验丰富的Web开发者而言也是项艰巨的任务。在那之前您必须认识到当前的趋势及标准,并确定如何将这些都纳入您的设计之中。
幸运的是,现在有很多 ...
在SendTo文件夹的空白处按鼠标右键,
2000/XP系统下路径为C:Documents and Settings用户名SendTo;
Vista/7系统下路径为C:/user/用户名/AppData/Roaming/Microsoft/Windows/SendTo/ (注意:由于文件都是隐藏属性,所以需要在“文件夹选项”中打开“显示所有文件和文件夹”,才能看到相应的目录)
点选“新建/文本文档”,其后在SendTo窗口中显然会有一个0字节的记事本图标文本文件“新建文本文档.txt”:
1、邮件接收者 将这个“新建文本文档.txt”重命名为“邮件接收者.MAPIMail”!此后 ...
please input register name:tianjunSerial:gLR8ZC-855550-68526556675331019
package com.test.go;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Test {
private static final String LL = "Decompiling this copyrighted softwar ...
<!-- 这种情况下,会将test.txt内容输出到页面 -->
<bean:include id="value" page="/jsp/test.txt"/>
<bean:write name="value"/>
主要是获取http头信息用的。
<bean:header id="userAgent" name="User-Agent"/>
<bean:write name="userAgent"/>
action里面做处理。
Test test = new Test();
test.setTest1("test1");
test.setTest2("test2");
request.setAttribute("temp", test);
jsp里面拿
<!--
name:attribute里面的name
propertye:对象里面的属性,如果是String或基本类型,不用propertye,直接取。
scope:存的区 ...
Action中的excute写入request.setAttribute("testPage", pageTest);
<!-- 在这里拿出tomcat容器中对HttpServletRequestWrapper的继承类 -->
<bean:page id="testRequest" property="request" />
<%=testRequest.getClass().getName()%>
property : Must be one of application ...
在继承Action的excute方法中
//bean:cookie begin
Cookie cookieTemp = new Cookie("test_name", "test_value");
cookieTemp.setComment("A test cookie");
cookieTemp.setMaxAge(120);
response.addCookie(cookieTemp);
//bean:cookie end
index.jsp
<body>
<!- ...
apache-tomcat-6.0.26-src.zip_contain_javaEE5_source_code
(1)通过struts内部的RequestProcessor来设置编码。
EncodingHandler.java
package com.test.util;
import java.io.UnsupportedEncodingException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.RequestProcessor;
public class Enco ...