1. 程式人生 > >C++檔案流操作

C++檔案流操作

讀取檔案

假如需要按行讀取下列檔案,並且分別通過不同變數讀取路徑以及數字,則可以通過C++流操作

/home/ubuntu/demo.jpg 1
/home/ubuntu/result.jpg 0

程式碼:

#include <iostream>
#include <fstream>

int main(int argc, char** argv) {
    std::ifstream infile(argv[1]);  // 通過傳入引數輸入路徑, demo.txt
    std::string line;
    size_t pos;
    int label;
    std:
:string str; while (std::getline(infile, line)) { // 從流中每次讀取一行,並存入line中 pos = line.find_last_of(' '); // 找到空格位置 label = atoi(line.substr(pos + 1).c_str()); // 空格後儲存到label str = line.substr(0, pos); // 空格前儲存到str std::cout << "label: " << label <<
" path: " << str << std::endl; } }

結果:

label: 1  path: /home/ubuntu/demo.jpg
label: 0  path: /home/ubuntu/result.jpg

Process finished with exit code 0