我正在向部署在Google Appengine服务器上的应用程序发出请求。应用程序返回一个unicode响应。响应,如果我通过开发服务器访问,它很好地按照我的预期,但当我部署到谷歌生产appengine服务器时,这一切都有一个问号如下 “报头”: “”
如果你看一下servlet的来源,我确保已经有了以下内容
response.setCharacterEncoding("UTF-8");
response.setContentType("text/html; charset=UTF-8");
请帮忙。
答案 0 :(得分:0)
我只是尝试从JSP页面返回UTF-8字符,它们似乎正确呈现。在JSP中,我有<jsp:directive.page contentType="text/html;charset=UTF-8" language="java" isELIgnored="false" />
和头<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
。没有在Servlet中为内容类型或编码设置任何响应。
我还尝试在本地和部署的数据存储区中检索和存储UTF-8数据,并在两种情况下都能正确呈现所有UTF-8字符。
这是Servlet:
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp)
throws IOException {
datastoreService.put(new Example((String) req.getParameter("field"))
.getEntity());
resp.sendRedirect("/");
}
@Override
protected void doGet(final HttpServletRequest req, final HttpServletResponse resp) throws ServletException, IOException {
final RequestDispatcher requestDispatcher = getServletContext().getRequestDispatcher("/WEB-INF/jsp/list.jsp");
final Iterator<Example> examples = Iterators.transform(
datastoreService.prepare(new Query(Example.class.getSimpleName())).asIterator(),
new Function<Entity, Example>() {
@Override
public Example apply(final Entity input) {
return new Example(input);
}
});
req.setAttribute("examples", examples);
requestDispatcher.forward(req, resp);
}
public static class Example {
private final Entity entity;
public Example(final String field) {
entity = new Entity(Example.class.getSimpleName());
entity.setProperty("field", field);
}
public Example(Entity entity) {
this.entity = entity;
}
public String getField() {
return (String) entity.getProperty("field");
}
public Entity getEntity() {
return entity;
}
}
和JSP:
<jsp:directive.page contentType="text/html;charset=UTF-8"
language="java" isELIgnored="false" />
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
version="-//W3C//DTD XHTML 1.1//EN" xml:lang="en" xmlns:og="http://opengraphprotocol.org/schema/">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Examples</title>
</head>
<body>
<h1>Examples</h1>
<form action="/" method="post">
<div>
<input type="text" name="field" />
<input type="submit" value="Submit" />
</div>
</form>
<ul>
<c:forEach var="example" items="${examples}">
<li>
<p><c:out value="${example.field}" /></p>
</li>
</c:forEach>
</ul>
</body>
</html>
答案 1 :(得分:0)
我也遇到了这个问题 - 我的jsp中的某些unicode字符(例如→)在开发服务器中呈现得很好,但在appengine中部署时却没有。这即使html头部包含。
解决方案是添加
<%@page pageEncoding="UTF-8"%>
到jsp文件的顶部。