Handling CSV: Difference between revisions

From Qt Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
h1. Handling CSV (file format)
h1. Handling CSV (file format)


This page discusses various available options for working with "csv":http://en.wikipedia.org/wiki/Comma-separated_values documents in your Qt application. Please also read the general considerations outlined on the "Handling Document Formats":http://wiki.qt.io/Handling_Document_Formats page.
This page discusses various available options for working with "csv":http://en.wikipedia.org/wiki/Comma-separated_values documents in your Qt application. Please also read the general considerations outlined on the "Handling Document Formats":http://wiki.qt.io/Handling_Document_Formats page.


== Using QxtCsvModel ==
== Using QxtCsvModel ==
Line 7: Line 7:
=== intro ===
=== intro ===


The "QxtCsvModel":http://libqxt.bitbucket.org/doc/tip/qxtcsvmodel.html class provides a "QAbstractTableModel":http://doc.qt.io/qt-5.0/qtcore/qabstracttablemodel.html for CSV Files. This is perhaps the easiest way possible to read and write csv files without having to parse the csv format to something qt can understand. It's as simple as using one line of code, for example the following reads the csv file:
The "QxtCsvModel":http://libqxt.bitbucket.org/doc/tip/qxtcsvmodel.html class provides a "QAbstractTableModel":http://doc.qt.io/qt-5.0/qtcore/qabstracttablemodel.html for CSV Files. This is perhaps the easiest way possible to read and write csv files without having to parse the csv format to something qt can understand. It's as simple as using one line of code, for example the following reads the csv file:


<code><br />csvmodel-&gt;setSource(fileName);<br /></code>
<code>
csvmodel->setSource(fileName);
</code>


=== Building libqxt ===
=== Building libqxt ===


QxtCsvModel is a part of &quot;libqxt&amp;quot;:http://dev.libqxt.org/libqxt/wiki/Home so just to use QxtCsvModel you'll need to build this library. It won't be that hard. Instructions are all provided. However, the download link that they provide in their main page does not support Qt 5 as of this writing(23/4/2013). You'll need to go &quot;here&amp;quot;:http://dev.libqxt.org/libqxt/downloads , select the &quot;branches&amp;quot; tab and download the zip file of the master branch.
QxtCsvModel is a part of "libqxt":http://dev.libqxt.org/libqxt/wiki/Home so just to use QxtCsvModel you'll need to build this library. It won't be that hard. Instructions are all provided. However, the download link that they provide in their main page does not support Qt 5 as of this writing(23/4/2013). You'll need to go "here":http://dev.libqxt.org/libqxt/downloads , select the "branches" tab and download the zip file of the master branch.


A novice friendly step by step guide in building and getting libqxt to work in written &quot;here&amp;quot;:http://wiki.qt.io/LibQxt_in_QtCreator The following example will be using the build as done in that guide.
A novice friendly step by step guide in building and getting libqxt to work in written "here":http://wiki.qt.io/LibQxt_in_QtCreator The following example will be using the build as done in that guide.


=== Example: Mini csv Program ===
=== Example: Mini csv Program ===
Line 21: Line 23:
[[Image:https://lh3.googleusercontent.com/-b5m3QxX8pyM/UXoGGXu2_lI/AAAAAAAABP4/7rkLeGfcEuY/w587-h293/_2013-04-26_12-43-19.png|minicsvprogram]]
[[Image:https://lh3.googleusercontent.com/-b5m3QxX8pyM/UXoGGXu2_lI/AAAAAAAABP4/7rkLeGfcEuY/w587-h293/_2013-04-26_12-43-19.png|minicsvprogram]]


&quot;Mini csv program&amp;quot;:https://bitbucket.org/bruceoutdoors/mini-qt-csv-example is built with Qt 5.0.2 MinGW, but should probably work with Qt 4. &quot;Download from here&amp;quot;:https://bitbucket.org/bruceoutdoors/mini-qt-csv-example/get/master.zip . The only thing you would need to do to get it working is fix the links to the dynamic library. I built it in C:/Qt/libqxt-libqxt-Qt5/ so I directed it there. Below is a snipet of the project file:
"Mini csv program":https://bitbucket.org/bruceoutdoors/mini-qt-csv-example is built with Qt 5.0.2 MinGW, but should probably work with Qt 4. "Download from here":https://bitbucket.org/bruceoutdoors/mini-qt-csv-example/get/master.zip . The only thing you would need to do to get it working is fix the links to the dynamic library. I built it in C:/Qt/libqxt-libqxt-Qt5/ so I directed it there. Below is a snipet of the project file:


<code><br />win32:CONFIG (release, debug|release): LIBS ''= -LC:/Qt/libqxt-Qt5/lib/ -lqxtcore<br />else:win32:CONFIG (debug, debug|release): LIBS''= -LC:/Qt/libqxt-Qt5/lib/ -lqxtcore
<code>
win32:CONFIG (release, debug|release): LIBS ''= -LC:/Qt/libqxt-Qt5/lib/ -lqxtcore
else:win32:CONFIG (debug, debug|release): LIBS''= -LC:/Qt/libqxt-Qt5/lib/ -lqxtcore


INCLUDEPATH ''= C:/Qt/libqxt-Qt5/src/core<br />DEPENDPATH''= C:/Qt/libqxt-Qt5/src/core<br /></code><br />Well, you're also suppose to add the following lines to your qmake project file:<br /><code><br /> CONFIG ''= qxt<br /> QXT''= core gui<br /></code><br />…but it doesn't seem to make much of a difference here… or any of the examples I've tried…
INCLUDEPATH ''= C:/Qt/libqxt-Qt5/src/core
DEPENDPATH''= C:/Qt/libqxt-Qt5/src/core
</code>
Well, you're also suppose to add the following lines to your qmake project file:
<code>
CONFIG ''= qxt
QXT''= core gui
</code>
…but it doesn't seem to make much of a difference here… or any of the examples I've tried…


I can now call the class like so:
I can now call the class like so:


<code><br />#include &lt;QxtCsvModel&amp;gt;<br /></code>
<code>
#include <QxtCsvModel>
</code>


The functionality provided is very very basic. If you wish to probe deeper to what this class can do, check the &quot;QxtCsvModel documentation&amp;quot;:http://libqxt.bitbucket.org/doc/tip/qxtcsvmodel.html .
The functionality provided is very very basic. If you wish to probe deeper to what this class can do, check the "QxtCsvModel documentation":http://libqxt.bitbucket.org/doc/tip/qxtcsvmodel.html .


== CSV reader from QtSimplify(Read CSV Only) ==
== CSV reader from QtSimplify(Read CSV Only) ==


http://qtsimplify.blogspot.com/2013/02/dealing-with-csv-files-easy-way.html
http://qtsimplify.blogspot.com/2013/02/dealing-with-csv-files-easy-way.html

Revision as of 08:51, 25 February 2015

h1. Handling CSV (file format)

This page discusses various available options for working with "csv":http://en.wikipedia.org/wiki/Comma-separated_values documents in your Qt application. Please also read the general considerations outlined on the "Handling Document Formats":http://wiki.qt.io/Handling_Document_Formats page.

Using QxtCsvModel

intro

The "QxtCsvModel":http://libqxt.bitbucket.org/doc/tip/qxtcsvmodel.html class provides a "QAbstractTableModel":http://doc.qt.io/qt-5.0/qtcore/qabstracttablemodel.html for CSV Files. This is perhaps the easiest way possible to read and write csv files without having to parse the csv format to something qt can understand. It's as simple as using one line of code, for example the following reads the csv file:

csvmodel->setSource(fileName);

Building libqxt

QxtCsvModel is a part of "libqxt":http://dev.libqxt.org/libqxt/wiki/Home so just to use QxtCsvModel you'll need to build this library. It won't be that hard. Instructions are all provided. However, the download link that they provide in their main page does not support Qt 5 as of this writing(23/4/2013). You'll need to go "here":http://dev.libqxt.org/libqxt/downloads , select the "branches" tab and download the zip file of the master branch.

A novice friendly step by step guide in building and getting libqxt to work in written "here":http://wiki.qt.io/LibQxt_in_QtCreator The following example will be using the build as done in that guide.

Example: Mini csv Program

minicsvprogram

"Mini csv program":https://bitbucket.org/bruceoutdoors/mini-qt-csv-example is built with Qt 5.0.2 MinGW, but should probably work with Qt 4. "Download from here":https://bitbucket.org/bruceoutdoors/mini-qt-csv-example/get/master.zip . The only thing you would need to do to get it working is fix the links to the dynamic library. I built it in C:/Qt/libqxt-libqxt-Qt5/ so I directed it there. Below is a snipet of the project file:

win32:CONFIG (release, debug|release): LIBS ''= -LC:/Qt/libqxt-Qt5/lib/ -lqxtcore
else:win32:CONFIG (debug, debug|release): LIBS''= -LC:/Qt/libqxt-Qt5/lib/ -lqxtcore

INCLUDEPATH ''= C:/Qt/libqxt-Qt5/src/core
DEPENDPATH''= C:/Qt/libqxt-Qt5/src/core

Well, you're also suppose to add the following lines to your qmake project file:

 CONFIG ''= qxt
 QXT''= core gui

…but it doesn't seem to make much of a difference here… or any of the examples I've tried…

I can now call the class like so:

#include <QxtCsvModel>

The functionality provided is very very basic. If you wish to probe deeper to what this class can do, check the "QxtCsvModel documentation":http://libqxt.bitbucket.org/doc/tip/qxtcsvmodel.html .

CSV reader from QtSimplify(Read CSV Only)

http://qtsimplify.blogspot.com/2013/02/dealing-with-csv-files-easy-way.html