带有特殊字符的ibatis数据库名称

发布于 2024-10-31 02:34:27 字数 187 浏览 1 评论 0原文

我必须生成关于一些数据库的 html 报告。

我在服务器端使用ibatis。 其中一张桌子的名称中有一个“度”符号。 问题是,当我在 html 文件中打印这个名称时,度数符号会转换为 ? ,这不是我想要的。

有没有办法,我可以获取带有特殊字符的数据库名称并以相同的方式显示它。

谢谢尼拉吉

I have to generate an html report regarding a few databases.

I am using ibatis on the server side.
One of the tables has a 'degree' sign as a part of its name.
The issue is, when I print this name in html file, the degree signs converts to ? , which is not what I want.

Is there a way , that I can get the database name with special characters and show it in the same way.

Thanks

Neeraj

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

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

发布评论

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

评论(1

四叶草在未来唯美盛开 2024-11-07 02:34:27

这看起来可能是数据库和代码之间的编码问题。确保您使用与数据库相同的设置。

如今,大多数数据库都使用 UTF-8 作为编码。但默认情况下,HTML 是 ISO8859,并且 Tomcat 假定所有 HTML 都是相同的。

我想你不能简单地重命名该表并完成它,对吧?

This looks like it might be an encoding issue between the database and your code. Make sure, that you use the same setting as the database.

Most databases use UTF-8 as encoding, nowadays. But HTML is, by default, ISO8859 and Tomcat assumes all HTML to be the same.

I guess you cannot simply rename that table and be done with it, right?

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