InterviewSolution
Saved Bookmarks
| 1. |
How can you read a request header information? |
|
Answer» Using getHeaderNames() method of HttpServletRequest to read the HTTP header information. This method returns an Enumeration that contains the header information associated with the current HTTP request. |
|