qt读取csv数据画图,通过Qt中的csv文件解析

Is anyone familiar with how to parse through a csv file and put it inside a string list. Right now I am taking the entire csv file and putting into the string list. I am trying to figure out if there is a way to get only the first column.

#include "searchwindow.h"

#include

#include

#include

#include

#include

#include

#include

#include

#include

#include

int main(int argc, char *argv[])

{

QApplication a(argc, argv);

QWidget *widget = new QWidget();

QHBoxLayout *layout = new QHBoxLayout();

QStringList wordList;

QFile f("FlightParam.csv");

if (f.open(QIODevice::ReadOnly))

{

//file opened successfully

QString data;

data = f.readAll();

wordList = data.split(',');

f.close();

}

QLabel *label = new QLabel("Select");

QLineEdit *lineEdit = new QLineEdit;

label->setBuddy(lineEdit);

QCompleter *completer = new QCompleter(wordList);

completer->setCaseSensitivity(Qt::CaseInsensitive); //Make caseInsensitive selection

lineEdit->setCompleter(completer);

layout->addWidget(label);

layout->addWidget(lineEdit);

widget->setLayout(layout);

widget->showMaximized();

return a.exec();

}

解决方案

There you go:

FlightParam.csv

1,2,3,

4,5,6,

7,8,9,

main.cpp

#include

#include

#include

int main()

{

QFile file("FlightParam.csv");

if (!file.open(QIODevice::ReadOnly)) {

qDebug() << file.errorString();

return 1;

}

QStringList wordList;

while (!file.atEnd()) {

QByteArray line = file.readLine();

wordList.append(line.split(',').first());

}

qDebug() << wordList;

return 0;

}

main.pro

TEMPLATE = app

TARGET = main

QT = core

SOURCES += main.cpp

Build and Run

qmake && make && ./main

Output

("1", "4", "7")

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值