在Linux和windows之间移动文件时,总是会出现在windows下编辑的文件在Linux打开时每一行都显示一个^M,虽然不影响使用,但是却影响美观,于是就想自己实现个小程序来进行转换。

要实现转换首先要弄明白为什么出现上面的情况,详细说是因为操作系统的历史原因,简单说就是windows的行结尾符是回车+换行,而Linux是换行,所以windows下的文件在Linux下会把行尾那个回车显示成^M这个符号。

了解了问题的原因,下面就是代码,思路简单,就不解释了。

 #include <sys/time.h>
#include <iostream>
#include <fstream>
#include <string>
#include <string.h> using namespace std; void usage()
{
cout << "Please input like this:" << endl;
cout << "WinToLinux oldfile newfile" << endl;
} int main(int argc, char **argv)
{
unsigned int timeuse;
struct timeval stStartTime;
struct timeval stEndTime; usage(); gettimeofday(&stStartTime, NULL); if(argc != )
{
cout << "Parameter is not deserved!" << endl;
return -;
} ifstream fin(argv[]);
ofstream fout(argv[]); if(!fin.is_open())
{
cout << "Open file failed,please check your file path." << endl;
} string strTmp;
while(getline(fin, strTmp))
{
if(strTmp[strTmp.size() - ] == '\r')
{
strTmp.erase(strTmp.size() - , );
}
fout << strTmp << endl;
strTmp.clear();
} gettimeofday(&stEndTime, NULL);
timeuse = *(stEndTime.tv_sec - stStartTime.tv_sec) +
stEndTime.tv_usec - stStartTime.tv_usec;
cout << "Use time : " << timeuse/1000000.0 << " sec" << endl; return ;
}

编程要学以致用,有用的代码才有价值

在用vim编辑时如果需要添加这个符号:^M,在插入状态输入ctrl+v+m即可。

05-11 11:09