Issue 107 - set encoding on response

git-svn-id: http://google-refine.googlecode.com/svn/trunk@1935 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
Tom Morris 2010-11-27 02:46:10 +00:00
parent 3d6458a0e5
commit 850c43d6f3

View File

@ -64,6 +64,9 @@ public class ReconJudgeOneCellCommand extends Command {
throws ServletException, IOException {
try {
request.setCharacterEncoding("UTF-8");
response.setCharacterEncoding("UTF-8");
Project project = getProject(request);
int rowIndex = Integer.parseInt(request.getParameter("row"));