有没有办法在 Ubuntu 上创建 cp932 编码文件?
答案1
gedit
,“另存为”有一个选项可以用不同的编码保存。
此后它应该可以接受日文字符。
如图所示:
~/Desktop$ file test.txt
test.txt: DBase 3 data file with memo(s)
命令行
将文件转换为 cp933:
recode cp932 {filename}
或者
iconv -f utf8 -t cp932 {filename} > {newfilename}
您可能需要
recode
安装sudo apt-get install recode
touch {filename} recode cp932 {filename}
您创建一个空文件,并且应该能够将 cp932 字符添加到该文件中。
如果您使用
vim
将以下内容放置在您的/etc/vim/vimrc
或中~/.vimrc file
:set encoding=cp932 set fileencoding=cp932
系统将以cp932保存。