c++将CString写一个TXT文件
#include<fstream>usingnamespacestd;CStringm_strPath3=_T("D:\\MATLAB7\\bin\\win32\\MAT...
#include <fstream>
using namespace std;
CString m_strPath3=_T("D:\\MATLAB7\\bin\\win32\\MATLAB.exe");
void Ct1Dlg::OnBnClickedButton2() //点击按钮
{
char* path = "D:\\2\\cyy.m"; // 我要生成一个.m文件
ofstream fout( path );
fout <<"路径在"<<m_strPath3<< endl;
}
问题是m_strPath3是无法输出的,输出的是0078F6F8 展开
using namespace std;
CString m_strPath3=_T("D:\\MATLAB7\\bin\\win32\\MATLAB.exe");
void Ct1Dlg::OnBnClickedButton2() //点击按钮
{
char* path = "D:\\2\\cyy.m"; // 我要生成一个.m文件
ofstream fout( path );
fout <<"路径在"<<m_strPath3<< endl;
}
问题是m_strPath3是无法输出的,输出的是0078F6F8 展开
2个回答
展开全部
瞎搞!
FILE* fp=0;
fopen_s(&fp,"D:\\2\\cyy.m","wb");
int len = m_strPath3.GetLength();
fwrite(m_strPath3.GetBuffer(),1,len,m_fp);
m_strPath3.ReleaseBuffer();
fclose(m_fp);
CString 是LPCTSR,你的工程得采得用unicode编码这样CString才等于LPCWSTR刚好和txt的编码一致。
FILE* fp=0;
fopen_s(&fp,"D:\\2\\cyy.m","wb");
int len = m_strPath3.GetLength();
fwrite(m_strPath3.GetBuffer(),1,len,m_fp);
m_strPath3.ReleaseBuffer();
fclose(m_fp);
CString 是LPCTSR,你的工程得采得用unicode编码这样CString才等于LPCWSTR刚好和txt的编码一致。
展开全部
......m_strPath3是CString类型。。。。。当然输不出 请看:http://bbs.csdn.net/topics/100040818
cout << (m_strPath3)s << endl;
cout << (m_strPath3)s << endl;
追问
我使用
fout <<(LPCTSTR)m_strPath3<< endl;
还是不行
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询