使用ScrollableResults和MySql的字符编码问题

发布于 2024-09-28 01:27:20 字数 540 浏览 3 评论 0原文

我正在做

private void doSomething(ScrollableResults scrollableResults) {
    while(scrollableResults.next()) {
       Object[] result = scrollableResults.get();
       String columnValue = (String) result[0];
    }
}

我在两台电脑上尝试过它

  1. 工作正常。它是 Windows 7。System.getProperty("file.encoding") 返回 Cp1252。
  2. 当数据库中的单词有重音时,columnValue 会得到奇怪的值。是CentOS。 System.getProperty("file.encoding") 返回 UTF-8。

两个数据库都是MySql,字符集:latin1,排序规则:latin1_swedish_ci。

我应该做什么来纠正这个问题?

I'm doing

private void doSomething(ScrollableResults scrollableResults) {
    while(scrollableResults.next()) {
       Object[] result = scrollableResults.get();
       String columnValue = (String) result[0];
    }
}

I tried this in two computers

  1. It works fine. It is a Windows 7. System.getProperty("file.encoding") returns Cp1252.
  2. When the word in the database has accents columnValue gets strange values. Is is a CentOS. System.getProperty("file.encoding") returns UTF-8.

Both databases are MySql, Charset: latin1, Collation: latin1_swedish_ci.

What should I do to correct this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无人接听 2024-10-05 01:27:20

我的建议是在任何地方使用 UTF-8

  • 在数据库/表中级别(以下 ALTER 不仅会更改表本身的字符集,还会更改所有现有文本列的字符集)

    ALTER TABLE <某些表>转换为字符集utf8
    
  • 在连接字符串中(这是必需的) MySQL 的 JDBC 驱动程序或者它将使用客户端的编码)

    jdbc:mysql://localhost:3306/db_name?useUnicode=yes&characterEncoding=UTF-8
     

(这是 MySQL 的 JDBC 驱动程序所必需的,否则它将使用客户端的编码)参考资料

My suggestion would be to use UTF-8 everywhere:

  • at the database/tables level (the following ALTER will change the character set not only for the table itself, but also for all existing textual columns)

    ALTER TABLE <some table> CONVERT TO CHARACTER SET utf8
    
  • in the connection string (which is required with MySQL's JDBC driver or it will use the client's encoding)

    jdbc:mysql://localhost:3306/db_name?useUnicode=yes&characterEncoding=UTF-8
    

References

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文