| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 301 人关注过本帖
标题:文件为乱码输出
只看楼主 加入收藏
wx1144542900
Rank: 2
等 级:论坛游民
帖 子:24
专家分:10
注 册:2013-11-1
结帖率:100%
收藏
 问题点数:0 回复次数:1 
文件为乱码输出
程序代码:
#include <fstream>
#include <iostream>
using namespace std;
struct student 
{
    char name[20];
    int num;
    int age;
    char sex;
};

int main()
{
    student stud[3]={"li",1001,18,'f',"fun",1002,19,'m',"wang",1003,17,'f'};
    ofstream outfile("example.txt",ios::binary);
    if(!outfile)
    {
        cout<<"open error!"<<endl;
        return 1;
    }
    for(int i=0;i<3;i++)
        outfile.write((char *)&stud[i],sizeof(stud[i]));
    outfile.close();
    return 0;

}


用的VC,与编译器有没有关系?
搜索更多相关主题的帖子: color 
2013-12-21 19:17
xufan
Rank: 8Rank: 8
等 级:蝙蝠侠
威 望:6
帖 子:232
专家分:804
注 册:2008-10-20
收藏
得分:0 
It seems like this:
程序代码:
int main()
{
    student stud[3]={"li",1001,18,'f',"fun",1002,19,'m',"wang",1003,17,'f'};
    ofstream outfile;
    outfile.open("example.txt",ios::trunc);
    if(!outfile)
    {
        cout<<"open error!"<<endl;
        return 1;
    }
    for(int i=0;i<3;i++)
        outfile<<stud[i].name<<" "<<stud[i].num<<" "<<stud[i].age<<" "<<stud[i].sex<<std::endl;
    outfile.close();
    return 0;

}


 

~~~~~~我的明天我知道~~~。
2013-12-21 20:41
快速回复:文件为乱码输出
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.031372 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved