Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在网络服务器上有一个带有希腊文本的 txt 文件,我正在使用 WebClient 下载我的 WP7 应用程序。问题是希腊字符是 ????????? 有什么建议吗?
将编码设置为 UTF-8。
WebClient wc = new WebClient (); wc.Encoding = UTF8Encoding.UTF8;