Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用Tomcat,我想从我的 HSQLDB 数据库中获取一个属性,并且重音被替换为"é" 之类的字符。
Tomcat
我的 JSP 包含
<"html text /; charset = UTF-8"% @ page contentType =%>标记和我的数据库插入是使用带有setString等的 PreparedStatement 进行的。
<"html text /; charset = UTF-8"% @ page contentType =%>
如何在我看来有口音?
谢谢
HSQLDB 使用 UTF-16 存储和检索数据。您需要告诉 JSP 如何将数据转换为 UTF-8。
好久没用JSP了,不过我觉得<html>tag应该是分开的。
<html>
<%@ page language="java" contentType = "text/html ; charset= UTF-8" %> <html> </html>