Skip to content

Instantly share code, notes, and snippets.

@matarillo
Last active August 13, 2019 02:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matarillo/b0f168d5f6bbd7364c3976e2507da15e to your computer and use it in GitHub Desktop.
Save matarillo/b0f168d5f6bbd7364c3976e2507da15e to your computer and use it in GitHub Desktop.
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ page import="java.util.Locale"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Test JSP</title>
</head>
<body>
<%
Locale loc = Locale.getDefault();
out.println("default locale:" + loc);
out.println("<br>");
%>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment