vsCode html页面中文乱码
<html>
<head>
<title>用户登录</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<form action = "LoginServlet.java" method = "post">
用户名:<input type = "text" name = "username">
<br>
密码:<input type = "password" name = "password">
<br>
<input type = "button" value="登录">
</form>
</body>
</html>
jsp页面乱码:
在最顶上添加
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>