index.jsp乱码问题的解决
Posted chenmz1995
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了index.jsp乱码问题的解决相关的知识,希望对你有一定的参考价值。
我们在做java项目的时候,都会有个首页,一般就是index.jsp,然后在index.jsp中引入相关的文件,一般也是引入打包过后的相关资源文件。
当index.jsp上面的中文出现乱码的时候,就需要设置字符的编码。
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
以上是关于index.jsp乱码问题的解决的主要内容,如果未能解决你的问题,请参考以下文章