You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

125 lines
2.8 KiB

Documentation: http://qtxlsx.debao.me
QtXlsx is a library that can read and write Excel files. It doesn't require Microsoft Excel and can be used in any platform that Qt5 supported.
The library can be used to
* Generate a new .xlsx file from scratch
* Extract data from an existing .xlsx file
* Edit an existing .xlsx file
## Getting Started
11 years ago
> * For linux user, if your Qt is installed through package manager tools such "apt-get", make sure that you have installed the Qt5 develop package *qtbase5-private-dev*
### Usage(1): Use Xlsx as Qt5's addon module
11 years ago
#### Building the module
> **Note**: Perl is needed in this step.
* Download the source code.
11 years ago
* Put the source code in any directory you like
* Open the qtxlsx.pro file using Qt Creator
* Build the project.
* Play with the examples provided by Qt Xlsx if you like.
11 years ago
* Go to the build directory of the project in a terminal and run
```
make install
```
11 years ago
The library, the header files, and others will be installed to your system.
> **Note**: If you don't want to use Qt Creator, you can run following command
at the toplevel directory of the project
> ```
qmake
make
make install
```
11 years ago
#### Using the module
* Add following line to your qmake's project file:
```
QT += xlsx
```
* Then, using Qt Xlsx in your code
```cpp
11 years ago
#include <QtXlsx>
int main()
{
QXlsx::Document xlsx;
xlsx.write("A1", "Hello Qt!");
xlsx.saveAs("Test.xlsx");
return 0;
}
```
### Usage(2): Use source code directly
The package contains a **qtxlsx.pri** file that allows you to integrate the component into applications that use qmake for the build step.
* Download the source code.
* Put the source code in any directory you like. For example, 3rdparty:
```
|-- project.pro
|-- ....
|-- 3rdparty\
| |-- qtxlsx\
| |
```
* Add following line to your qmake project file:
```
include(3rdparty/qtxlsx/src/xlsx/qtxlsx.pri)
```
11 years ago
> **Note**: If you like, you can copy all files from *src/xlsx* to your application's source path. Then add following line to your project file:
11 years ago
> ```
include(qtxlsx.pri)
```
11 years ago
> **Note**: If you do not use qmake, you need to define the following macro manually
11 years ago
> ```
XLSX_NO_LIB
```
* Then, using Qt Xlsx in your code
11 years ago
```cpp
#include "xlsxdocument.h"
int main()
{
QXlsx::Document xlsx;
xlsx.write("A1", "Hello Qt!");
xlsx.saveAs("Test.xlsx");
return 0;
}
```
## References
* https://github.com/jmcnamara/XlsxWriter
* http://openpyxl.readthedocs.org
* http://officeopenxml.com/anatomyofOOXML-xlsx.php
* http://www.libxl.com
* http://closedxml.codeplex.com/
* http://epplus.codeplex.com/
* http://excelpackage.codeplex.com/
* http://spreadsheetlight.com/
* http://www.schemacentral.com/sc/ooxml/