QT逐行读取txt中的数据,并保存到数组中

2024年11月29日 16:44
有1个网友回答
网友(1):

QFile file(yourTextFileName);
if (!file.open(QIODevice::ReadOnly)){
return;
}
int i=0;
QVector pointVec;
while(!file.atEnd()){
QString lineString=QString(file.readLine()).trimed();
pointVec<}
差不多就是这样吧,可能小地方有错误!