0

次の方法で、http フォームからいくつかの情報を送信しようとしています。

<form method="GET" action="/springhibernate/notes/addComment"> <textarea rows="10" cols="30" name="content" placeholder="type comment here"></textarea> <input type="hidden" name="note.id" value=<c:out value="${note.id}"/>/> <input type="submit" class="button" value="send comment"/> </form>

Spring フレームワークは、この送信要求をコントローラーにマップします

@RequestMapping(value = "notes/addComment", method = RequestMethod.GET)
public String addComment(@RequestParam("content") String content, @RequestParam("note.id") String parent_id, ModelMap model) throws UnsupportedEncodingException {
    Long note_id = notesService.addComment(content, Long.valueOf(parent_id));
    return "redirect:viewNote/" + parent_id;
}

結果として、コンテンツ変数に ?°?±???????µ があります。

非ラテン文字のみで問題が発生します。

JSP ページの内容: <%@ page contentType="text/html;charset=WINDOWS-1251" language="java" %>

4

1 に答える 1

0

私は数時間前に同様の問題を抱えていました。ここを ご覧 ください. 質問の最後に解決策を投稿しました。

于 2012-11-18T21:40:25.613 に答える