JSP页面显示问号

页面显示问号一般为乱码问题。

针对乱码问题检查以下几点内容:

(1)JSP内

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

注:一个低级错误浪费了我半个小时来找错误,敲黑板!!text/html 与charset=" UTF-8 " 中间要有分号。


(2)HTML内

<html>
        <head>
            <meta http-equiv="Content-Type" content="text/html charset=UTF-8">
        </head>


(3)为了后期方便,不用每次调整编码,可以设置jsp页面编码方式

Window - preferences - Web - JSP Files - Encoding


猜你喜欢

转载自blog.csdn.net/qq_28026809/article/details/77894520