There are Chinese characters in the input parameters, an error of 500 is reported, and the server has an internal error.

Chinese characters need to be escaped by URLEncoder.encode

java.net.URLEncoder.encode(s.toString(), "UTF-8")

insert image description here

Guess you like

Origin blog.csdn.net/xiyangyang8110/article/details/124328323