~~~~~~~~~~~~JAVA名词翻译成中文~~~~~~~~~~~~~

来源:百度知道 编辑:UC知道 时间:2024/05/14 14:16:22
五.Which method in the HttpServlet class services the HTTP POST request?
c servicePost(HttpServletRequest, HttpServletResponse)
d doPost(HttpServletRequest, HttpServletResponse)
六.You need to send a GIF file to the browser. Which of the following lines should be
called after (or before) a call to response.getOutputStream()?
a response.setContentType("image/gif"); Before
b response.setContentType("image/gif"); After
七.Which of the following methods would you use to retrieve header values from a request?
a getHeader() of ServletRequest
b getHeaderValue() of ServletRequest
八.You want the userid parameter to be available only to the requests that come from the same user. Which of the following lines would you insert at //1?
九.Which of the following method calls will ensure that a session will never be expunged by the servlet container? (Select one)
十.Which of the following implicit objects is not ava

五。在HttpServlet的类中,哪个方法是处理HTTP POST请求的?
六。你需要向浏览器发送一个GIF的文件,以下哪一行将在调用了response.getOutputStream()之前(或者之后)后被调用?
七。以下哪个方法将用于从request中检索header的值?
八。你希望参数userid只对从同一个用户发送的请求有效,以下哪一样你将插入到//1处?
九。以下哪一个方法的调用将确保一个session不会被servlet容器所删除。
十。以下哪个隐含对象是默认的jsp页面所不提供的?
十一。以下哪个隐含对象不代表一个范围内的容器?

五.Which method in the HttpServlet class services the HTTP POST request?
HttpServlet类service方法中哪个方法处理了HTTP的post请求:明显是d
c servicePost(HttpServletRequest, HttpServletResponse)
d doPost(HttpServletRequest, HttpServletResponse)
六.You need to send a GIF file to the browser. Which of the following lines should be
called after (or before) a call to response.getOutputStream()?
你需要发送一个GIF文件到页面上去。下列哪行应该在调用response.getOutputStream()之后(或之前)
被调用?
七.Which of the following methods would you use to retrieve header values from a request?
你会使用下列哪个方法去检索请求中的header values(我的理解是第一个数据值)
八.You want the userid parameter to be available only to th