請問 listview 讀文件檔寫法該怎麼寫??
我大概寫了一點點~
不過小弟對程式語言方面不熟~
故應該會有蠻多地方有問題的~
sch是我自己命名的slot~
以下是我的mainwindow.cpp
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "iostream"
#include "fstream"
using namespace std;
MainWindow::MainWindow(QWidget *parent)
: QMainWindow(parent), ui(new Ui::MainWindow)
{
ui->setupUi(this);
}
MainWindow::~MainWindow()
{
delete ui;
}
void MainWindow::sch()
{
char s[1024];
char* path = "/home/neuros/TB.txt";
fstream fh(path);
while(fh.getline(s,1024))
{
cout << s << endl;
fh << ui->listView->show();
}
fh.close();
}
請問該如何修改~