中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用C++實現保存txt文件

發布時間:2020-11-03 14:38:52 來源:億速云 閱讀:403 作者:Leah 欄目:開發技術

使用C++實現保存txt文件?相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

簡單示例

#include <windows.h>
#include <fstream>
#include <iostream>
#include <string>
using namespace std;
 
int main()
{
  ifstream myfile("in.txt");
  ofstream outfile("out.txt", ios::app); //ios::app指追加寫入
  string temp;
   
  while (getline(myfile, temp)) //按行讀取字符串
  {
    outfile << temp<<endl;//寫文件
   
  }
  myfile.close();
  outfile.close();
  while (1);
  return 0;
}

實際應用

一個det.txt存的都是目標檢測的信息

1TXT數據存放數據格式

1,-1,281.931,187.466,79.93,209.537,0.997784,-1,-1,-1
1,-1,56.6878,144.225,93.5572,295.907,0.997601,-1,-1,-1
1,-1,378.618,188.922,166.431,234.127,0.995973,-1,-1,-1
1,-1,203.983,207.153,45.553,133.834,0.985409,-1,-1,-1

(抽取單個目標展示)

幀號 目標ID x y w h 準確度

1,-1,291.557,192.468,39.494,119.227,0.995128,-1,-1,-1

使用C++實現保存txt文件

(雖然看起來很亂,而且沒有換行,但是程序按照行讀取還是能分開??? )

使用C++實現保存txt文件

程序功能:

1 讀取原txt

2 存到另一個txt里面

3 解析其中的數據

這里的解析沒有用到字符串分割等,而是利用了istringstream對象直接將不同類型的數據導給不同的變量。

istringstream對象解析的簡單示例

#include <iostream>
#include <sstream>
 
using namespace std;
 
int main()
{
  istringstream istr;
  istr.str("1 56.7");
  //上述兩個過程可以簡單寫成 istringstream istr("1 56.7");
  cout << istr.str() << endl;
  int a;
  float b;
  istr >> a;
  cout << a << endl;
  istr >> b;
  cout << b << endl;
  return 0;
}

  上例中,構造字符串流的時候,空格會成為字符串參數的內部分界,例子中對a,b對象的輸入"賦值"操作證明了這一點,字符串的空格成為了整型數據與浮點型數據的分解點,利用分界獲取的方法我們事實上完成了字符串到整型對象與浮點型對象的拆分轉換過程。

工程代碼:

#include <windows.h>
#include <fstream>
#include <iostream>
#include <string>
 
#include "opencv2/video/tracking.hpp"
#include "opencv2/highgui/highgui.hpp"
 
using namespace std;
using namespace cv;
 
typedef struct TrackingBox
{
  int frame;
  int id;
  Rect_<float> box;
}TrackingBox;
 
 
 
 
/*
1TXT數據存放數據格式
1,-1,281.931,187.466,79.93,209.537,0.997784,-1,-1,-1
1,-1,56.6878,144.225,93.5572,295.907,0.997601,-1,-1,-1
1,-1,378.618,188.922,166.431,234.127,0.995973,-1,-1,-1
1,-1,203.983,207.153,45.553,133.834,0.985409,-1,-1,-1
(抽取單個目標展示)
幀號 目標ID x y w h 準確度
1,-1,291.557,192.468,39.494,119.227,0.995128,-1,-1,-1
 
*/
void TXTtoBOX() {
  string inFileName = "det.txt";
  string outFileName = "out.txt";
 
  ifstream myfile(inFileName);
  ofstream outfile(outFileName, ios::app); //ios::app指追加寫入
 
 
  if (!myfile.is_open())
  {
    cerr << "Error: can not find file " << inFileName << endl;
    return;
  }
  if (!outfile.is_open())
  {
    cerr << "Error: can not find file " << outFileName << endl;
    return;
  }
 
  string detLine;//存放讀取出的單個目標信息
  istringstream ss;
  vector<TrackingBox> detData;
  char ch;//存放逗號,沒有實際用處,去除數據間的逗號
  float tpx, tpy, tpw, tph;
 
  while (getline(myfile, detLine)) //按行讀取字符串
  {
    TrackingBox tb;
    ss.str(detLine);
    ss >> tb.frame >> ch >> tb.id >> ch;// ch用來存放逗號
    ss >> tpx >> ch >> tpy >> ch >> tpw >> ch >> tph;
    ss.str("");//清空后面不管
 
    tb.box = Rect_<float>(Point_<float>(tpx, tpy), Point_<float>(tpx + tpw, tpy + tph));
    detData.push_back(tb);
 
    outfile << detLine << endl;//寫文件
    cout <<"detLine:"<< detLine << endl;
    cout << "x:"<<tpx << "  y:"<< tpy << " w:" << tpw << " h:" << tph <<endl;
 
  }
  myfile.close();
  outfile.close();
  while (1);
 
 
}
int main()
{
  TXTtoBOX();
   
  return 0;
}

運行之后

重新按行存放輸出到out.txt

使用C++實現保存txt文件

解析

使用C++實現保存txt文件

看完上述內容,你們掌握使用C++實現保存txt文件的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

娱乐| 遵义市| 靖边县| 谢通门县| 余干县| 怀远县| 九江县| 长兴县| 定兴县| 弥勒县| 祁东县| 永嘉县| 双辽市| 太康县| 阿勒泰市| 屯门区| 衡阳市| 福建省| 民丰县| 龙江县| 尖扎县| 临猗县| 仁化县| 江北区| 昌宁县| 元阳县| 九龙县| 云阳县| 大荔县| 达州市| 陇川县| 雷州市| 微山县| 山西省| 阿拉善右旗| 桃园市| 潼关县| 观塘区| 蒙山县| 丹东市| 应用必备|