英文:
Go: Write to a file with windows-1252 encoding
问题
在Go语言中,可以使用特定的编码(例如windows-1252)将数据写入文件吗?
英文:
Is it possible to write to a file in Go with a specific encoding like windows-1252 for instance?
答案1
得分: 4
你需要使用一个库来进行编码之间的转换:
https://code.google.com/p/go-charset/
这个库可以让你在不同的编码之间进行字符串的转换,比如 windows-1252
。
英文:
You will have to use a library to convert between encodings:
https://code.google.com/p/go-charset/
The library allows you to convert strings to and from encodings like windows-1252
.
答案2
得分: 2
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论