09 2024 档案

c# webclient 使用默认代理的代码
摘要:void Main() { using (WebClient client = new WebClient()) { // 使用默认代理 client.Proxy = WebRequest.GetSystemWebProxy(); // 你可以选择是否设置凭据 client.Credentials 阅读全文

posted @ 2024-09-29 21:15 空明流光 阅读(10) 评论(0) 推荐(0) 编辑

c++ string 与 wstring 互转并解决显示乱码
摘要:string 转 wstring: #include <iostream> #include <sstream> #include <locale> #include <string> #include <codecvt> int main() { std::string utf8_str = "你 阅读全文

posted @ 2024-09-02 12:29 空明流光 阅读(196) 评论(0) 推荐(0) 编辑

导航