Commit 079b4f90f9557b8a3d378e9ae3bb0c1e9ca16e40

Authored by liquanyu
1 parent 73374555a2

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 @ 079b4f9
... ... @@ -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"),"gbk");
  202 + //address = new String(address.getBytes("ISO-8859-1"),"utf-8");
203 203 return basicConfigService.getAddressItems(address);
204 204 }
205 205 }