Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jiayaoguang/excelexport
excel export to json and java c# code
https://github.com/jiayaoguang/excelexport
Last synced: 4 days ago
JSON representation
excel export to json and java c# code
- Host: GitHub
- URL: https://github.com/jiayaoguang/excelexport
- Owner: jiayaoguang
- License: apache-2.0
- Created: 2024-07-17T14:23:01.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-29T12:07:49.000Z (6 months ago)
- Last Synced: 2024-07-29T15:22:21.982Z (6 months ago)
- Language: Java
- Size: 48.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# excelExport
excel表格数据导出为json数据,并生成对应代码Excel 表配置 :
![img.png](img.png)
生成的java代码 :
public class ConfTest {
private String name;
private int id;
private long time;
public ConfTest() {
}
private String name;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
private int id;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
private long time;
public long getTime() {
return time;
}
public void setTime(long time) {
this.time = time;
}
}