jsp使用include标签加入HTML中文乱码解决办法

在web.xml中加入

 

 

<jsp-config>
<jsp-property-group>
<url-pattern>*.html</url-pattern>
<page-encoding>UTF-8</page-encoding>
</jsp-property-group>
</jsp-config>

 

 

HTML写入

<meta  charset="UTF-8">  

jsp写入

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>

 

posted @ 2017-08-07 15:33  蕉叶  阅读(505)  评论(0编辑  收藏  举报