1
0
mirror of https://github.com/QtExcel/QXlsx.git synced 2025-01-16 04:42:53 +08:00

update readme

This commit is contained in:
Jay Two 2018-12-04 20:06:27 +09:00
parent bdec40afad
commit 06d4944d1c
2 changed files with 14 additions and 14 deletions

View File

@ -17,13 +17,9 @@
- Copycat : xlsx 파일을 읽어 위젯으로 표시. xlsx 파일 인쇄. (할일: xlsx 파일로 저장)
- WebServer : xlsx 파일을 읽어 웹으로 표시 (`http://127.0.0.1:3001`)
## 설정하는 방법 (설치)
### 활용 예제 (Hello excel)
- [QXlsx 프로젝트 설정하는 방법](HowToSetProject.ko.md) 참조
## 활용 예제 (Hello excel)
### :one: 엑셀(xlsx) 파일 쓰기
#### :one: 엑셀(xlsx) 파일 쓰기
```cpp
QXlsx::Document xlsx;
@ -31,7 +27,7 @@ xlsx.write("A1", "Hello Qt!"); // 셀(A,1)에 'Hello Qt!'값을 설정. 공유
xlsx.saveAs("Test.xlsx"); // 'Test.xlsx'라는 이름으로 엑셀 파일을 저장.
```
### :two: 엑셀(xlsx) 파일 읽기
#### :two: 엑셀(xlsx) 파일 읽기
```cpp
Document xlsx("Test.xlsx"); // 엑셀 파일 읽기
@ -46,6 +42,10 @@ QVariant var = cell->readValue(); // 셀값을 읽음 (숫자(double), 날자(QD
qDebug() << var; // 표시
```
## 설정하는 방법 (설치)
- [QXlsx 프로젝트 설정하는 방법](HowToSetProject.ko.md) 참조
## 테스트 환경
Travis CI | AppVeyor

View File

@ -16,14 +16,10 @@
- HelloAndroid : read xlsx on Android using QML
- Copycat : load xlsx file and display on widget. print xlsx file. (TODO: save xlsx)
- WebServer : load xlsx and display to web (`http://127.0.0.1:3001`)
## How to set up (Installation)
- See [how to setup QXlsx project](HowToSetProject.md)
## Example (Hello excel)
### Example (Hello excel)
### :one: Writing excel file(*.xlsx)
#### :one: Writing excel file(*.xlsx)
```cpp
QXlsx::Document xlsx;
@ -31,7 +27,7 @@ xlsx.write("A1", "Hello Qt!"); // write "Hello Qt!" to cell(A,1). it's shared st
xlsx.saveAs("Test.xlsx"); // save the document as 'Test.xlsx'
```
### :two: Reading excel file(*.xlsx)
#### :two: Reading excel file(*.xlsx)
```cpp
Document xlsx("Test.xlsx"); // load excel file
@ -46,6 +42,10 @@ QVariant var = cell->readValue(); // read cell value (number(double), QDateTime,
qDebug() << var; // display value
```
## How to set up (Installation)
- See [how to setup QXlsx project](HowToSetProject.md)
## Tested environment
Travis CI | AppVeyor