码迷,mamicode.com
首页 > 编程语言 > 详细

C++ 读入文件中的中文字符

时间:2015-06-30 12:29:04      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

环境:C++,VS2013,32位WIN7

一、文件类型为Unicode

 

///
/// 函数功能: 读入文件内容 /// 参考:http://blog.csdn.net/xiaobai1593/article/details/7060730 /// wstring readFileIntoStringuNNICODE(const char * filename) { ifstream ifile(filename, ios::binary); wstring res; if (ifile) { wchar_t wc; while (!ifile.eof()) { ifile.read((char *)(&wc), 2); res = res + wc; } } ifile.close(); return res; }

  

二、文件类型为ANSI

 

///
/// 函数功能:读入ANSI文件中的中文字符
/// 参考:http://tieba.baidu.com/p/1865939813
///
wstring readFileIntoStringuANSI(const char * filename) {
	wifstream ifile(filename, ios::binary);
	wstring res;
	ifile.imbue(std::locale("CHS"));
	if (ifile) {
		wchar_t wc;
		while (!ifile.eof()) {
			ifile.read((&wc), 1);
			res = res + wc;
		}
	}
	ifile.close();
	return res;
}

  

三、文件类型为UTF-8

 

C++ 读入文件中的中文字符

标签:

原文地址:http://www.cnblogs.com/poemqiong/p/4609829.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!