免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 9443 | 回复: 10
打印 上一主题 下一主题

[C++] [已解决]wcout 如何输出宽字符 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-04-21 10:30 |只看该作者 |倒序浏览
代码如下

C++
#include <iostream>
#include <string>
#include <locale>

using namespace std;

int main(void) {
  wstring w = L"Out中文";

  locale loc("zh_CN.UTF-8");
  wcout.imbue(loc);

  wcout << w << endl;
}


C
#include <stdio.h>
#include <stdlib.h>
#include <locale.h>
#include <wchar.h>

int main(void) {
  wchar_t w[] = L"Out中文";
  setlocale(LC_ALL, "zh_CN.UTF-8");
  wprintf(L"%ls\n", w);

  return 0;
}


c 就容易解决了.可是 c++ 为什么不能够正常输出?
请大侠帮帮手.

---
已经上网Google了一天.
---

网上看了很多都问这个问题,都是说添加了locale后能够输出.


---
就像三楼所说
之前因为我因为编译了stlport没有留意,把它也编译进去了.所以就老是无法正常出来.
stlport可能要好好研究下

[ 本帖最后由 SCys 于 2008-4-21 15:29 编辑 ]

论坛徽章:
0
2 [报告]
发表于 2008-04-21 11:13 |只看该作者
#include <iostream>
#include <string>
#include <locale>

using namespace std;

int main(void)
{
&nbsp;&nbsp;wstring w = L"Out中文";
&nbsp;&nbsp;ios_base::sync_with_stdio(false);
&nbsp;&nbsp;locale loc("zh_CN.UTF-8");
&nbsp;&nbsp;wcout.imbue(loc);

&nbsp;&nbsp;wcout << w << endl;
}

论坛徽章:
0
3 [报告]
发表于 2008-04-21 11:15 |只看该作者
#include <iostream>
#include <string>
#include <locale>

using namespace std;

int main(void)
{
&nbsp;&nbsp;wstring w = L"Out中文";  
&nbsp;&nbsp;locale loc("zh_CN.UTF-8");
&nbsp;&nbsp;locale::global(loc);

&nbsp;&nbsp;wcout << w << endl;
}

论坛徽章:
0
4 [报告]
发表于 2008-04-21 11:20 |只看该作者
大哥,我都试过了.
可是没有任何的效果?


---
怪事

#include <string>
#include <iostream>
#include <locale>

using namespace std;
int main(void) {
  ios_base::sync_with_stdio(false);
  locale loc("zh_CN.UTF-8";
  locale::global(locale::classic()) ;
  wcout.imbue(loc);
  wcout << 1 << endl;

  wstring s = L"中文";
  wcout << s << endl;
}

论坛徽章:
0
5 [报告]
发表于 2008-04-21 11:53 |只看该作者
wprintf(L"%ls", L"中文"
确实能够解决燃眉之需,可是大侠是否能够帮帮
看看wcout是否能够输出呢?

论坛徽章:
0
6 [报告]
发表于 2008-04-21 12:00 |只看该作者
原帖由 SCys 于 2008-4-21 11:53 发表
wprintf(L"%ls", L"中文"
确实能够解决燃眉之需,可是大侠是否能够帮帮
看看wcout是否能够输出呢?


我贴的代码在我这里没有问题。

论坛徽章:
0
7 [报告]
发表于 2008-04-21 12:13 |只看该作者
汗,难道是我的环境有问题?
---
看看先,毕竟C里面没有问题,我就没有怀疑过自己的编译环境.
检查环境先.
---
谢谢大侠.

论坛徽章:
0
8 [报告]
发表于 2008-04-21 12:34 |只看该作者
没有发现什么问题....T_T
---
实在是不知道.算了,晚上换个发行版本,看看效果

论坛徽章:
0
9 [报告]
发表于 2008-04-21 13:32 |只看该作者
man iconv

论坛徽章:
39
2017金鸡报晓
日期:2017-02-08 10:39:4219周年集字徽章-周
日期:2023-04-15 12:02:2715-16赛季CBA联赛之深圳
日期:2023-02-16 14:39:0220周年集字徽章-年
日期:2022-08-31 14:25:28黑曼巴
日期:2022-08-17 18:57:0919周年集字徽章-年
日期:2022-04-25 13:02:5920周年集字徽章-20	
日期:2022-03-29 11:10:4620周年集字徽章-年
日期:2022-03-14 22:35:1820周年集字徽章-周	
日期:2022-03-09 12:51:3220周年集字徽章-年
日期:2022-02-10 13:13:4420周年集字徽章-周	
日期:2022-02-03 12:09:4420周年集字徽章-20	
日期:2022-01-25 20:14:27
10 [报告]
发表于 2008-04-21 14:14 |只看该作者
wcout极不好用, 尤其是在linux下.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP