Windows 到 Linux utf-8 文件

发布于 2024-08-26 07:32:57 字数 151 浏览 5 评论 0原文

我在 Windows 中有一个 UTF-8 编码的文件,当我在 Windows 下使用它时,它显示一切正确,但是当我在 Linux 中复制该文件时,Unicode 字符是乱码。该文件是纯文本文件。我怎样才能让这个文件在Linux中可读,或者我怎样才能正确复制它?

提前致谢

I have a file UTF-8 encoding in windows, and when i use it under windows it shows everithing right, but when i copy the file in Linux, the Unicode characters are giberish. The file is plain textfile. How can i get this file to be readable in linux, or how can i copy it properly??

thanks in advance

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

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

发布评论

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

评论(3

又爬满兰若 2024-09-02 07:32:57

看起来像 Apache/PHP 问题

您是否通过 PHP 的内置 htmlspecialchars 方法(或类似方法)运行字符串?如果是这样,您可能需要将其编码切换为 UTF8。

尝试使用 htmlspecialchars($mytext, ENT_COMPAT, 'UTF-8'),而不是 htmlspecialchars($mytext)


以下(我之前的答案)是不正确的,正如 Michael Burr 指出的那样,UTF-8 不需要或不使用 BOM。

如果只是文本,则有可能缺少字节顺序标记 (BOM),或者使用不正确的 BOM 进行编码。

如果不正确,Linux 阅读器可能会尊重它,但 Windows 阅读器会忽略它。尝试在 Notepad++ 等中重新打开文件并重新保存。 Notepad++ 在“格式”菜单中有很多关于保存 UTF-8 文件的选项。

Looks like an Apache/PHP issue

Are you running your strings through PHP's built-in htmlspecialchars method (or similar)? If so, you may need to switch its encoding to UTF8

Instead of htmlspecialchars($mytext), try using htmlspecialchars($mytext, ENT_COMPAT, 'UTF-8')


Note the following (my previous answer) is incorrect, as Michael Burr notes, UTF-8 doesn't need or use the BOM.

If it's just the text, then there's a chance it's missing the Byte Order Mark (BOM), or is encoded with an incorrect BOM.

If it's incorrect, the linux reader may be honouring it but your windows reader is ignoring it. Try re-opening your file in something like Notepad++ and resaving. Notepad++ has a bunch of options in the Format menu about saving UTF-8 files.

眼前雾蒙蒙 2024-09-02 07:32:57

确保您已以二进制模式传输文件。也可以尝试 iconv。

Make sure you have transfered the file in binary mode. Also try iconv.

日记撕了你也走了 2024-09-02 07:32:57

文件本身没问题。在将文本发送到浏览器之前,管道中的其他东西正在搞乱文本。在应用程序中的各个点回显文本,以查明哪个操作破坏了它。

The file itself is fine. Something else in the pipe is screwing up the text before it gets sent to the browser. Echo the text at various points in the app to pinpoint which operation is breaking it.

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