JSP文件test.jsp文件如下所示,运行时,将发生( )。 <% String str = null;%> str is <%=str%>
A. 编译阶段出现错误
B. 翻译阶段出现错误
C. 执行字节码时发生错误
D. 运行后,浏览器上显示:str is null
查看答案
JSP页面的page指令主要用于设置该页面的各种属性,page指令的language属性的作用是( )。
A. 将需要的包或类引入到JSP页面中
B. 指定JSP页面使用的脚本语言,默认为Java
C. 指定JSP页面采用的编码方式,默认为text/html
D. 服务器所在国家编码
在Java Web中,HttpServletResponse的( )方法用于一个HTTP请求重定向到另一个资源。
A. sendURL()
B. sendRedirect()
C. forward()
D. redirectURL()
在JSP页面中进行访问控制时,一般会使用JSP的( )内置对象实现对用户的会话跟踪。
A. request
B. session
C. response
D. application
以下哪种格式是正确的URL( )。
A. http://localhost:8080/news/index.jsp
B. http://localhost/8080/news/index.jsp
C. http://localhost/8080:news/index.jsp
D. http:localhost://8080/news/index.jsp