Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The solution of displaying garbled codes in linux and windows files

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/02 Report--

This article will explain in detail the solutions to display garbled in linux and windows files. The content of the article is of high quality, so the editor will share it with you for reference. I hope you will have a certain understanding of the relevant knowledge after reading this article.

Question:

The code (.m) file written in matlab under Windows is copied to Linux (Ubuntu), and the Chinese characters of the comments are all garbled.

Reason:

GB2312 encoding is used by default under Windows, and UTF-8 is used by default in Linux. So the code generated under Windows is GB2312 coding, which is of course recognized as garbled under Linux; on the contrary, the same garbled code.

Solution:

Use the iconv command under linux to change the encoding of the file:

Test1.m is converted from GB2312 to UTF-8 (the code of matlab under windows runs under linux)

Iconv-f GB2312-t UTF-8 test1.m-o test1.m

Test2.m is converted from UTF-8 to GB2312 (the code of matlab under linux runs under windows)

Iconv-f UTF-8-t GB2312 test2.m-o test2.m on linux and windows file display garbled solutions to share here, I hope the above content can be of some help to you, can learn more knowledge. If you think the article is good, you can share it for more people to see.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report