フロントエンドはバックグラウンドの中国語の文字化けしに伝わります


解決方法は3種類ある:1.入力パラメータが
public ExecResult uploadUser(HttpServletRequest request,HttpSession session)throws IOException {
	}

できる
// UTF-8 , UTF-8 , 
		try {
			request.setCharacterEncoding("UTF-8");
		} catch (UnsupportedEncodingException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}	

2.String str=new String(あなたの文字列.getBytes(「ISO 8859_1」)、「UTF-8」)3.tomcat-server.xmlで見つけた