A.一旦servlet被實例化后,包容器把一個ServletConfig類型的對象傳送給init()方法 B.可以使用Servlet的getServletConfig()方法返回ServletConfig對象 C.ServletConfig對象的方法getInitParameter(name)返回初始化參數(shù)name的值,初始化參數(shù)一般定義在web.xml中 D.ServletConfig對象的方法getServletName()方法返回在web.xml中的元素的值
A.客戶瀏覽器禁用了Cookie后,在Servlet中的getSession方法就無法獲得HttpSession對象了 B.客戶瀏覽器禁用了Cookie后,可以使用HttpServletResponse接口中的encodeURL()方法對URL編碼。但客戶如果沒有禁用Cookie,使用HttpServletResponse接口中的encodeURL()方法對URL編碼會出錯 C.使用HttpServletResponse接口中的encodeURL()方法對URL編碼后,這個方法把以分號開頭的字符串形式的路徑加入到輸入的URL中,如;jsessionid = 123456789 D.只要使用HttpServletResponse接口中的encodeURL()方法對URL進行編碼,Web應(yīng)用程序的用戶在瀏覽器中禁止cookie和不禁止cookie都是一樣的
A.HttpServletRequest類的getSession方法有兩個:帶參數(shù)的getSession方法和不帶參數(shù)的getSession方法 B.在Servlet中,可以使用HttpSession session = new HttpSession()創(chuàng)建session對象 C.如果HttpServletRequest類的getSession方法的參數(shù)為false,表示如果沒有與當前的請求相聯(lián)系的會話對象時,該方法返回null D.如果HttpServletRequest類的getSession方法的參數(shù)為true,表示如果沒有與當前的請求相聯(lián)系的會話對象時,該方法返回null