diff --git a/doc/ServerDocument.md b/doc/ServerDocument.md index 2c4fc60..9e2824e 100644 --- a/doc/ServerDocument.md +++ b/doc/ServerDocument.md @@ -64,7 +64,7 @@ } try { - allParams.add(name + "=" + UriUtils.decode(request.getParameter(name), "utf-8")); + allParams.add(name + "=" + UriUtils.encode(request.getParameter(name), "utf-8")); } catch (UnsupportedEncodingException e) { e.printStackTrace(); }