From 850c43d6f32b4198cdf26b2d2a267febe45a28e4 Mon Sep 17 00:00:00 2001 From: Tom Morris Date: Sat, 27 Nov 2010 02:46:10 +0000 Subject: [PATCH] Issue 107 - set encoding on response git-svn-id: http://google-refine.googlecode.com/svn/trunk@1935 7d457c2a-affb-35e4-300a-418c747d4874 --- .../google/refine/commands/recon/ReconJudgeOneCellCommand.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main/src/com/google/refine/commands/recon/ReconJudgeOneCellCommand.java b/main/src/com/google/refine/commands/recon/ReconJudgeOneCellCommand.java index 9fe06fc17..af0b65d04 100644 --- a/main/src/com/google/refine/commands/recon/ReconJudgeOneCellCommand.java +++ b/main/src/com/google/refine/commands/recon/ReconJudgeOneCellCommand.java @@ -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"));