博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用Unicode写文本文件:一个简单类的示例
阅读量:5839 次
发布时间:2019-06-18

本文共 1206 字,大约阅读时间需要 4 分钟。

参考了示例。

 
class WOFSTREAM : public std::ofstream
{
public:
 
WOFSTREAM()
{
 
}
 
WOFSTREAM(const wchar_t *path)
{
 
setlocale(LC_ALL,"");
size_t sz=-1;
char szPath[MAX_PATH]={0};
wcstombs_s(&sz,szPath,sizeof(szPath),path,_TRUNCATE);
 
cout<
<<"\n";
open(szPath,ios::binary);//注意此处如不指定binary,ostream对象被默认视为对文本进行操作,会额外在行末添加字符:0x0D
this->WriteBOM();
setlocale(LC_ALL,"C");
}
 
 
WOFSTREAM& operator <<(const wchar_t* text)
{
const char *pData = (const char *)text;
const unsigned int length = wcslen(text) * sizeof(text[0]);
write(pData, length);
return *this;
}
WOFSTREAM& operator <<(unsigned short ch)
{
const char *pData = (char *)&ch;
const unsigned int length = sizeof(ch);
write(pData, length);
return *this;
}
 
WOFSTREAM& operator<<(WOFSTREAM& (*pfunc)(WOFSTREAM&))
{
return ((*pfunc)(*this));
}
 
protected:
void WriteBOM()
{
const static wchar_t BOM = 0xfeff;
write((const char *)&BOM, sizeof(BOM));
}
 
};
WOFSTREAM& endl(WOFSTREAM& wf)//重载换行符
{
wf<<0x000D<<0x000A;
return wf;
}
 
//使用:
int __cdecl main()
{
 
WOFSTREAM wf2(L"xx2.txt");
if (wf2.good())
{
wf2<
<
wf2<
wf2.flush();
wf2.close();
}
else
{
cout<<"bad!"<
 
}
 
getchar();
return 1;
 
}

转载于:https://www.cnblogs.com/qinfengxiaoyue/p/3421859.html

你可能感兴趣的文章
RHCE 学习笔记(24) - LVM 逻辑卷
查看>>
WordPress优化:为网站添加个性化缩略图标
查看>>
shell脚本分析IP归属地
查看>>
网络安全系列之十 万能密码登录网站后台
查看>>
CITRIX XenAPP/TS打印管理ThinPrint.
查看>>
杨辉三角绘图C语言
查看>>
SQL Server以Online模式创建索引
查看>>
微软开放 .NET 框架源代码
查看>>
Win2008 R2 VDI动手实验系列之五:配置远程桌面Web访问
查看>>
Jira迁移及内存调整
查看>>
Exchange Server 2010 SP2 新功能简述
查看>>
使用wxWidgets for C++从资源文件中静态装载图像
查看>>
提高数据库安全性的办法
查看>>
工作流编程循序渐进(8:状态机工作流)
查看>>
3.VMware View 4.6安装与部署-connection server(View Standard Server)
查看>>
Lync Server 2013 实战系列之六:标准版-安装和更新LyncServer 系统
查看>>
MariaDB日志审计 帮你揪出内个干坏事儿的小子
查看>>
Reporting Services目录临时数据库文件存在
查看>>
一个Windows Mobile, Windows Embedded CE工程师的找工经历(一)
查看>>
终于有了MSDN上的Blog
查看>>