From 1b6504d48de7c35874f62598cf54c06b77b83354 Mon Sep 17 00:00:00 2001 From: liquanyu Date: Tue, 14 Feb 2017 17:31:38 +0800 Subject: [PATCH] update code --- .../java/com/lyms/platform/operate/web/controller/RegionController.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/RegionController.java b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/RegionController.java index d276145..da42512 100644 --- a/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/RegionController.java +++ b/platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/RegionController.java @@ -199,7 +199,7 @@ public class RegionController extends BaseController{ @RequestMapping(value = "/getAddressItems", method = RequestMethod.GET) @ResponseBody public BaseObjectResponse getAddressItems(@RequestParam(required = true)String address) throws UnsupportedEncodingException { - // address = new String(address.getBytes("ISO-8859-1"),"UTF-8"); + address = new String(address.getBytes("ISO-8859-1"),"gbk"); return basicConfigService.getAddressItems(address); } } \ No newline at end of file -- 1.8.3.1