登录  
 加关注
   显示下一条  |  关闭
温馨提示!由于新浪微博认证机制调整,您的新浪微博帐号绑定已过期,请重新绑定!立即重新绑定新浪微博》  |  关闭

银河里的星星

落在人间

 
 
 

日志

 
 

c++文件内容编辑及append,不清空原内容  

2010-08-28 22:10:53|  分类: 程序设计语言 |  标签: |举报 |字号 订阅

  下载LOFTER 我的照片书  |

#include <iostream>
#include <fstream>
#include <string>
#include <cstring>
using namespace std;

int main (int argc, char *argv[])
{
    char logItemBuffer[129];
    int lineLen = 128;
    memset(logItemBuffer,'#',lineLen);
    logItemBuffer[129] = '\0';
    //write meta info
    string logMetaInfo = "LOG_META_TAG:ItemTypeNum:JobName:TaskName:InstanceID:StartTime---:";
    strncpy(logItemBuffer,logMetaInfo.c_str(),logMetaInfo.size());
    fstream fout("test.txt",ios::in|ios::out);
    if ( !fout.is_open() ) {
          return 0;
     }

    fout << logItemBuffer << endl;
   
    cout << fout.tellp() << endl;
    int logOffSet =  fout.tellp();
   
    memset(logItemBuffer,'#',lineLen);
    logItemBuffer[129] = '\0';
    string logItemStr = "LOG_ITEM_TAG:test_name:test_value:test_time---:"; 
    strncpy(logItemBuffer,logItemStr.c_str(),logItemStr.size());
    fout << logItemBuffer << endl;
    cout << fout.tellp() << endl;
   
    //rewrite log
    fout.seekp(logOffSet);    
    memset(logItemBuffer,'#',lineLen);
    logItemBuffer[129] = '\0';
    string logItemCurrentStr = "LOG_ITEM_TAG:name:value:time:"; 
    strncpy(logItemBuffer,logItemCurrentStr.c_str(),logItemCurrentStr.size());
    fout << logItemBuffer << endl;   
   
    //append log
    fout.seekp(0,ios::end); 
    logItemCurrentStr = "LOG_ITEM_TAG:name:value:time:";  
    fout << logItemCurrentStr << endl;   
   
    fout.close();
   
    ofstream t("test.txt",ios::in|ios::out);//if only ios::out is used,the file content will be cleared.
    t.close();
   
    getchar();
    return 0;
}

  评论这张
 
阅读(1868)| 评论(0)

历史上的今天

评论

<#--最新日志,群博日志--> <#--推荐日志--> <#--引用记录--> <#--博主推荐--> <#--随机阅读--> <#--首页推荐--> <#--历史上的今天--> <#--被推荐日志--> <#--上一篇,下一篇--> <#-- 热度 --> <#-- 网易新闻广告 --> <#--右边模块结构--> <#--评论模块结构--> <#--引用模块结构--> <#--博主发起的投票-->
 
 
 
 
 
 
 
 
 
 
 
 
 
 

页脚

网易公司版权所有 ©1997-2018