InterviewSolution
Saved Bookmarks
| 1. |
What is HTTPServletResponse class? |
|
Answer» when a Web server responds to a HTTP request to the browser, the response typically consists of a status line, some response headers, a blank line, and the document. HTTPServletResponse represents this HTTP Response. |
|