posts - 2,  comments - 0,  trackbacks - 0

getAttribute和getParameter的区别

1.getAttribute是取得jsp中用setAttribute設定的attribute
2.parameter得到的是string;attribute得到的是object
3.request.getParameter()方法传递的数据,会从Web客户端传到Web服务器端,代表HTTP请求数据;request.setAttribute()和getAttribute()方法传递的数据只会存在于Web容器内部,在具有转发关系的Web组件之间共享。即request.getAttribute()方法返回request范围内存在的对象,而request.getParameter()方法是获取http提交过来的数据。

JSP中getParameter与getAttribute有何区别?
——说实话,这个问题当初我也困惑很久,我也知道怎么用,可是到底有什么区别,我也不是很清楚,后来找了很多资料才明白。昨天又有一位朋友问我这个问题,想我当初同样也困惑过,于是我就把这个问题贴出来,让同样困惑的朋友解惑。
——getParameter得到的都是String类型的。或者是http://a.jsp?id=123中的123,或者是某个表单提交过去的数据。
——getAttribute则可以是对象。
——getParameter()是获取POST/GET传递的参数值;
——getAttribute()是获取对象容器中的数据值;
——getParameter:用于客户端重定向时,即点击了链接或提交按扭时传值用,即用于在用表单或url重定向传值时接收数据用。
——getAttribute:用于服务器端重定向时,即在sevlet中使用了forward函数,或struts中使用了mapping.findForward。getAttribute只能收到程序用setAttribute传过来的值。
——getParameter()是获取POST/GET传递的参数值;
——getAttribute()是获取SESSION的值;
另外,可以用setAttribute,getAttribute发送接收对象.而getParameter显然只能传字符串。
setAttribute 是应用服务器把这个对象放在该页面所对应的一块内存中去,当你的页面服务器重定向到另一个页面时,应用服务器会把这块内存拷贝另一个页面所对应的内存中。这样getAttribute就能取得你所设下的值,当然这种方法可以传对象。session也一样,只是对象在内存中的生命周期不一样而已。
getParameter只是应用服务器在分析你送上来的request页面的文本时,取得你设在表单或url重定向时的值。

getParameter   返回的是String,   用于读取提交的表单中的值;      
getAttribute   返回的是Object,需进行转换,可用setAttribute设置成任意对象,使用很灵活,可随时用;


原文地址: http://blog.sina.com.cn/s/blog_3e3cdc09010009g2.html

posted @ 2008-05-15 16:03 hurray 阅读(274) | 评论 (0)编辑 收藏

好久没好好净下心来写代码了,习惯了ctrl+c,ctrl+v,发现现在连最简单的jdbc连接都忘记怎么写了,感谢beansoft的奉献,借着熟悉MyEclipse下的开发,好好写写代码.就这么个简单的例子,也是写写停停的.看来还要勤加练习啊.

package biz;

import java.sql.*;

public class JDBCHelloWorld{
    
public static void main(String[] args){
        
try{
            Class.forName(
"com.mysql.jdbc.Driver");
        }
catch(ClassNotFoundException e) {
            
// TODO Auto-generated catch block
            e.printStackTrace();
        }

        Connection conn 
= null;
        Statement stmt 
= null;
        ResultSet rs 
= null;
        
try{
            conn 
= java.sql.DriverManager.getConnection("jdbc:mysql://localhost:3306/test?useUnicode=true&charcterEnconding=GBK","root",null);
            stmt 
= conn.createStatement();
            stmt.executeUpdate(
"insert into student(username,password,age) values('王五','1234',25)");
            rs 
= stmt.executeQuery("select id,username,password,age from student");
            
while(rs.next()){
                System.out.println(
"姓名=" + rs.getString("username"));
                System.out.println(
"密码=" + rs.getString("password"));
                System.out.println(
"年龄=" + rs.getString("age"));
            }

        }
catch(SQLException e){
            e.printStackTrace();
        }
finally{
            
try{
                rs.close();
            }
catch(SQLException e) {
                
// TODO Auto-generated catch block
                e.printStackTrace();
            }

            
try{
                stmt.close();
            }
catch(SQLException e) {
                
// TODO Auto-generated catch block
                e.printStackTrace();
            }

            
try{
                conn.close();
            }
catch(SQLException e) {
                
// TODO Auto-generated catch block
                e.printStackTrace();
            }

        }

        
    }

}

posted @ 2008-05-14 16:30 hurray 阅读(732) | 评论 (0)编辑 收藏
<2008年5月>
27282930123
45678910
11121314151617
18192021222324
25262728293031
1234567

常用链接

留言簿(1)

随笔分类

随笔档案

搜索

  •  

最新评论

阅读排行榜

评论排行榜