devxlogo

Checking Browser Locale

Similar to GzipServlet, this tip uses header information for tuningoutput of our servlets; this one allows you to check the header ‘Accept-Language’. If your user has set some language preferences within her own browser, you can read these settings through this header:

 import java.io.*;import javax.servlet.*;import javax.servlet.http.*;public class BrowserLocaleServlet extends HttpServlet {                              public void doGet 
(HttpServletRequest req,HttpServletResponse res) throws ServletException, IOException { doPost(req,res); } public void doPost (HttpServletRequest req,
HttpServletResponse res) throws ServletException, IOException { String userLocale=req.getHeader("Accept-Language"); PrintWriter out=res.getWriter(); res.setContentType("text/html"); out.println(""); out.println("
User settings are: "+userLocale); out.println(""); out.flush(); out.close(); } }

For example, in my case, the output is ‘User settings are: en’. Depending on that settings, you can format, for example, your date before output. You should note that you have to see the HTTP manual for a full description of coding issues in this string.

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Seven Service Boundary Mistakes That Create Technical Debt

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.