休眠编码
我正在尝试将带有日语字符的数据插入到 oracle 数据库中。数据库中保存的东西是一堆倒置的问号。我该如何解决这个问题
Im trying to insert data with japanese characters to an oracle database. The things is what is saved in the database are bunch of inverted question marks. HOw do I resolve this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅http://www.errcode.net/blogs/?p=6 确定数据库的编码。我目前正在使用 Oracle 和 Hibernate(UTF-8),没有额外的配置。
同样,您可能想检查输入值是否正确编码。例如,如果您有一个 Web 应用程序,请检查请求参数编码(或使用
request.setCharacterEncoding("utf-8")
设置它)See http://www.errcode.net/blogs/?p=6 to determine the encoding of your database. I'm currently using Oracle with Hibernate in UTF-8 with no extra configurations.
Aslo, you might want to check whether the input values come correctly encoded. For example, if you have a web application, check the request parameter encoding (or set it, with
request.setCharacterEncoding("utf-8")
)