2017-10-05 13:42:55 +09:00
|
|
|
# QXlsx
|
2017-08-20 17:04:40 +09:00
|
|
|
|
2017-10-05 13:42:55 +09:00
|
|
|
> *Read this in other languages: [English](README.md), [한국어](README.ko.md)*
|
2017-08-20 17:04:40 +09:00
|
|
|
|
2017-10-05 14:35:35 +09:00
|
|
|
![](image/xlsx-file-format-extension.png)
|
|
|
|
|
2017-10-05 13:42:55 +09:00
|
|
|
## 엑셀 읽기/쓰기 라이브러리
|
2017-08-20 18:44:16 +09:00
|
|
|
|
2017-10-05 13:42:55 +09:00
|
|
|
* QXlsx는 엑셀 파일(*.xlsx) 읽기/쓰기 라이브러리입니다.
|
|
|
|
* QXlsx는 Qt 5.x를 사용하는 정적 라이브러리로 제작되었습니다.
|
2017-08-20 17:03:24 +09:00
|
|
|
|
2017-08-20 17:09:07 +09:00
|
|
|
## 테스트 환경
|
2017-09-23 10:48:52 +09:00
|
|
|
* Qt 5.9.1 (Visual Studio 2017/Windows 32bit)
|
2017-08-20 17:03:24 +09:00
|
|
|
* Qt 5.9.1 (MingW/Windows 32bit)
|
|
|
|
* Qt 5.9.1 (Ubuntu 16/Linux x64)
|
|
|
|
* Qt 5.5.1 (MingW/Windows 32bit)
|
|
|
|
* Qt 5.6.0 (MingW/Windows 32bit)
|
|
|
|
* Qt 5.5.0 (Ubuntu 17/Linux i686)
|
|
|
|
* Qt 5.2.0 (Ubuntu 14/Linux x64)
|
|
|
|
* Qt 5.0.1 (MingW/Windows 32bit)
|
|
|
|
|
2017-09-05 13:24:11 +09:00
|
|
|
## 활용예제 Hello excel (엑셀 파일 쓰기)
|
2017-08-20 17:03:24 +09:00
|
|
|
```cpp
|
2017-10-05 15:17:18 +09:00
|
|
|
QXlsx::Document xlsx;
|
2017-08-20 17:03:24 +09:00
|
|
|
xlsx.write("A1", "Hello Qt!");
|
|
|
|
xlsx.saveAs("Test.xlsx");
|
|
|
|
```
|
|
|
|
|
2017-09-02 14:30:20 +09:00
|
|
|
## 빌드하는 방법
|
2017-10-05 13:42:55 +09:00
|
|
|
참조: https://github.com/j2doll/QXlsx/wiki
|
2017-09-02 14:30:20 +09:00
|
|
|
|
2017-08-20 18:42:33 +09:00
|
|
|
## 라이선스
|
2017-10-05 13:42:55 +09:00
|
|
|
* GPL License https://www.gnu.org/licenses/gpl-3.0.en.html
|
2017-09-28 22:18:25 +09:00
|
|
|
* The Qt Company : https://www.qt.io/developers/
|
2017-10-05 13:42:55 +09:00
|
|
|
* 최초 소스코드의 출처는 다음과 같습니다. Debao Zhang(2014) : https://github.com/dbzhang800/QXlsxWriter
|
2017-08-20 17:03:24 +09:00
|
|
|
|
2017-09-02 14:30:31 +09:00
|
|
|
## 문의
|
2017-09-15 20:43:42 +09:00
|
|
|
* https://github.com/j2doll
|
2017-09-15 20:44:16 +09:00
|
|
|
* j2doll@gmail.com
|