EL表达式中文显示乱码解决方法
程序员文章站
2022-04-07 19:08:54
...
请看第4行,加入如下代码即可解决:
<% request.setCharacterEncoding("utf-8"); %>
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<% request.setCharacterEncoding("utf-8"); %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>根据是否登录显示不同的内容</title>
</head>
<body>
<c:if var="result" test="${empty param.username }">
<form name="form1" method="post" action="">
用户名:<input name="username" type="text" id="username">
<br>
<br>
<input type="submit" name="Submit" value="登录">
</form>
</c:if>
<c:if test="${!result }">
[${param.username }]欢迎访问我公司网站!
</c:if>
</body>
</html>
上一篇: 【jsp】EL表达式
下一篇: 整理货架(模拟/思维)