How to work with Chinese login page
(internationalization).if he enters user name and password
in chinese, how is it converted to English and validate in
db? And in reverse it should display welcome message in
Chinese,if user is valid
Answer Posted / venkat
Wen u are in such a condition, the resource bundles are used.
resource bundle is nothing but a property file.the container
looks for the specific property file and gets those values
in english.after performing the business logic, it again
looks the properties file .here the container does not
automatically does the process.we have to define some code
in the servlet.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What are common tasks performed by Servlet Container?
What is cookie? Why is cookie used?
Why is httpservlet declared abstract?
What are all the ways for session tracking?
What is the difference between sendredirect() and forward() in a servlet?
What are the differences between the servletconfig interface and the servletcontext interface?
How can you push data from an Applet to a Servlet?
What is string tokenizer?
Write a program to show the functionality of servlets.
A client sends requests to two different web components. Both of the components access the session. Will they end up using the same session object or different session ?
What is the difference between Servlet Request and Servlet Context when calling a Request Dispatcher?
What are the life cycle methods of the servlet?
Describe in brief RequestDespatcher?
Write a simple servlet program to print the contents of html.
Can we get PrintWriter and ServletOutputStream both in a servlet?