Commit 1b6504d48de7c35874f62598cf54c06b77b83354

Authored by liquanyu
1 parent 56ea186a12

update code

Showing 1 changed file with 1 additions and 1 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/controller/RegionController.java View file @ 1b6504d
... ... @@ -199,7 +199,7 @@
199 199 @RequestMapping(value = "/getAddressItems", method = RequestMethod.GET)
200 200 @ResponseBody
201 201 public BaseObjectResponse getAddressItems(@RequestParam(required = true)String address) throws UnsupportedEncodingException {
202   - // address = new String(address.getBytes("ISO-8859-1"),"UTF-8");
  202 + address = new String(address.getBytes("ISO-8859-1"),"gbk");
203 203 return basicConfigService.getAddressItems(address);
204 204 }
205 205 }