使用SpringBoot+React搭建一个Excel报表平台

这篇具有很好参考价值的文章主要介绍了使用SpringBoot+React搭建一个Excel报表平台。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

摘要:本文由葡萄城技术团队于CSDN原创并首发。转载请注明出处:葡萄城官网,葡萄城为开发者提供专业的开发工具、解决方案和服务,赋能开发者。

前言

Excel报表平台是一款功能强大、操作简单的系统平台,可以帮助用户上传、编辑和分析报表数据,实现数据可视化。

本文所描述的这个平台主要包含以下功能:

  1. 打开服务器上现有的Excel文件。
  2. 调用ToJson并将ssjson传输到客户端。
  3. 在浏览器中,从服务器调用带有ssjson的fromJSON。
  4. 可以看到Excel模板的内容。
  5. 可以在线编辑模板或填充模板上的数据。
  6. 可以下载查看Excel文件中的更改之后的内容。

项目截图

Excel模板演示:

使用SpringBoot+React搭建一个Excel报表平台,spring boot,react.js,excel

投标跟踪器:
使用SpringBoot+React搭建一个Excel报表平台,spring boot,react.js,excel

待办事项列表:
使用SpringBoot+React搭建一个Excel报表平台,spring boot,react.js,excel

通讯簿:

使用SpringBoot+React搭建一个Excel报表平台,spring boot,react.js,excel

上传报表文件:

使用SpringBoot+React搭建一个Excel报表平台,spring boot,react.js,excel

主要代码:

前端(React)代码文件路径:

src

│ boot.tsx

│ GC.GcExcel.d.ts

│ routes.tsx

│ tree.txt

│ utility.ts

│ 

├─components

│   ExcelIODemo.tsx

│   ExcelTemplateDemo.tsx

│   Home.tsx

│   Layout.tsx

│   NavMenu.tsx

│   ProgrammingDemo.tsx

│   

├─css

│   react-select.css

│   site.css

│   vendor.css

│   

└─spread.sheets

  │ gc.spread.sheets.all.11.0.6.min.js

  │ gc.spread.sheets.Excel2013white.11.0.6.css

  │ gc.spread.sheets.Excel2016colorful.11.0.6.css

  │ 

  └─pluggable

​      gc.spread.sheets.charts.11.0.6.min.js

前端代码:

1.Excel模板演示页面(ExcelTemplateDemo.tsx):

public render() {  
 return <div className='spread-page'>  
 <h1>Excel Template Demo</h1>  
 <p>This example demonstrates how to use <strong>GcExcel</strong> as server spreadsheet model, and use <strong>Spread.Sheets</strong> as client side viewer or editor: </p>  
 <ul>  
 <li><strong>GcExcel</strong> will first open an Excel file existing on server.</li>  
 <li><strong>GcExcel</strong> then inoke <strong>ToJson</strong> and transport the ssjson to client side.</li>  
 <li>In browser, <strong>Spread.Sheets</strong> will invoke <strong>fromJSON</strong> with the ssjson from server.</li>  
 <li>Then, you can see the content of the Excel template in <strong>Spread.Sheets</strong>.</li>  
 <li>At same time, you can fill or edit data on the template through <strong>Spread.Sheets</strong>.</li>  
 <li>At last, you can download to view the changes in Excel file.</li>  
 </ul>  
 <br>  
 <div id='spreadjs' className='spread-div' >  
 </div>;  
}  

componentDidMount() {  
 this.spread = new GC.Spread.Sheets.Workbook(**document**.getElementById('spreadjs'), {  
 seetCount: 1  
 });  

 this.loadSpreadFromTemplate();  
}

2. 编程API演示界面(投标跟踪器、待办事项列表、通讯簿)(ProgrammingDemo.tsx):

public render() {  
 return <div className='spread-page'>  
 <h1>Programming API Demo</h1>  
 <p>This example demonstrates how to programme with <strong>GcExcel</strong> to generate a complete spreadsheet model at server side, you can find all of source code in the SpreadServicesController.cs, we use <strong>Spread.Sheets</strong> as client side viewer. </p> <ul>  
 <li>You can first program with <strong>GcExcel</strong> at server side.</li>  
 <li><strong>GcExcel<strong> then inoke <strong>ToJson</strong> and transport the ssjson to client side.</li>  
 <li>In browser, <strong>Spread.Sheets</strong> will invoke <strong>fromJSON</strong> with the ssjson from server.</li>  
 <li>Then, you can view the result in <strong>Spread.Sheets</strong> or download it as Excel file.</li>  
 </ul>  
 <br>  
 <div className='btn-group'>  
 <Select className='select'  
 name="form-field-name"  
 value={this.state.value}  
 options={this.state.options}  
 onChange={this.onUseCaseChange} >  
 <button className='btn btn-default btn-md' onClick={this.exportExcel}>Export Excel</button>  
 </div>  
 <div id='spreadjs' className='spread-div' />  
 </div>;  
}  

componentDidMount() {  
 this.spread = new GC.Spread.Sheets.Workbook(**document**.getElementById('spreadjs'), {  
 seetCount: 1  
 });  

 this.loadSpreadFromUseCase(this.state.value.value);  
}

3.Excel输入和输出演示界面(ExcelIODemo.tsx):

public render() {  
 return <div className='spread-page'>  
 <h1>Excel Input&Output Demo</h1>  
 <p>This example demonstrates how to use <strong>GcExcel</strong> as server-side spreadsheet model, and use <strong>Spread.Sheets</strong> as the front-end side viewer and editor. </p>  
 <ul>  
 <li><strong>GcExcel</strong> can import an Excel file and export to ssjson format, then transport the ssjson to client-side.</li>  
 </ul>  
 <br/>  
 <div className='btn-group'>  
 <input id="file" className='btn btn-default btn-md' type='file' onChange={this.importExcel} title='Import Excel' />  
 <button className='btn btn-default btn-md' onClick={this.exportExcel}>Export Excel</button>  
 </div>  
 <div id='spreadjs' className='spread-div' />  
 </div>;  
}  

*/**  
 * 在客户端上传一个Excel文件,在服务器端打开该文件,然后将ssjson传输到客户端  
 */  
*importExcel(e : any) {  
 var selectedFile = e.target.files[0];  
 if (!selectedFile) {  
 this.selectedFileName = null;  
 return;  
 }  

 this.selectedFileName = selectedFile.name;  
 var requestUrl = '/open';  
 fetch(requestUrl, {  
 method: 'POST',  
 body: selectedFile  
 }).then(response => response.json() as Promise<object>)  
 .then(data => {  
 this.spread.fromJSON(data);   
 });  
}  

*/**  
 * 从Spread.Sheets传输ssjson并保存和下载Excel文件  
 */  
*exportExcel(e : any) {  
 var ssjson = **JSON**.stringify(this.spread.toJSON(null));  
 Utility.*ExportExcel*(ssjson, this.selectedFileName);  
}

后端代码:

后端代码使用GCExcel(一款基于Java的报表插件)实现,详细的代码如下所示:

后端代码(SpringBoot)文件路径:

src:.

│

└─main

├─java

│ └─com

│ └─grapecity

│ └─documents

│ └─demo

│ │ Application.java

│ │

│ └─controller

│ GcExcelController.java

│

└─resources

│ application.properties

│

├─public

│ │ bundle.js

│ │ bundle.js.map

│ │ favicon-16x16.png

│ │ favicon-32x32.png

│ │ index.html

│ │

│ ├─css

│ │ site.css

│ │ site.css.map

│ │ vendor.css

│ │

│ └─spreadJS

│ │ gc.spread.sheets.all.11.0.6.min.js

│ │ gc.spread.sheets.Excel2013white.11.0.6.css

│ │ gc.spread.sheets.Excel2016colorful.11.0.6.css

│ │

│ └─pluggable

│ gc.spread.sheets.charts.11.0.6.min.js

│

└─static

└─error

404.html
  1. **投标跟踪器(GcExcelController.java):**使用到了GcExcel的单元格内标签调整表格大小。
Workbook workbook = new Workbook();  

IWorksheet worksheet = workbook.getWorksheets().get(0);  

//***********************Set RowHeight & ColumnWidth***************  
worksheet.setStandardHeight(30);  
worksheet.getRange("1:1").setRowHeight(57.75);  
worksheet.getRange("2:9").setRowHeight(30.25);  
worksheet.getRange("A:A").setColumnWidth(2.71);  
worksheet.getRange("B:B").setColumnWidth(11.71);  
worksheet.getRange("C:C").setColumnWidth(28);  

//**************************Set Table Value & Formulas*********************  
ITable table = worksheet.getTables().add(worksheet.getRange("B2:H9"), true);  
worksheet.getRange("B2:H9")  
 .setValue(new Object[][] { { "BID #", "DESCRIPTION", "DATE RECEIVED", "AMOUNT", "PERCENT COMPLETE", "DEADLINE", "DAYS LEFT" }, { 1, "Bid number 1", null, 2000, 0.5, null, null },  
 { 2, "Bid number 2", null, 3500, 0.25, null, null }, { 3, "Bid number 3", null, 5000, 0.3, null, null }, { 4, "Bid number 4", null, 4000, 0.2, null, null },;  
worksheet.getRange("B1").setValue("Bid Details");  
worksheet.getRange("D3").setFormula("=TODAY()-10");  
worksheet.getRange("D4:D5").setFormula("=TODAY()-20");  
//****************************Set Table   
ITableStyle tableStyle = workbook.getTableStyles().add("Bid Tracker");  
workbook.setDefaultTableStyle("Bid Tracker");
  1. **待办事项列表(GcExcelController.java):**使用到了GcExcel的setValue方法给表格内容赋值。
Workbook workbook = new Workbook();  

Object[] data = new Object[][] { { "TASK", "PRIORITY", "STATUS", "START DATE", "DUE DATE", "% COMPLETE", "DONE?", "NOTES" },  
 { "First Thing I Need To Do", "Normal", "Not Started", null, null, 0, null, null }, { "Other Thing I Need To Finish", "High", "In Progress", null, null, 0.5, null, null },  
 { "Something Else To Get Done", "Low", "Complete", null, null, 1, null, null }, { "More Errands And Things", "Normal", "In Progress", null, null, 0.75, null, null },  
 { "So Much To Get Done This Week", "High", "In Progress", null, null, 0.25, null, null } };  

IWorksheet worksheet = workbook.getWorksheets().get(0);  
worksheet.setName("To-Do List");  
worksheet.setTabColor(Color.*FromArgb*(148, 112, 135));  
worksheet.getSheetView().setDisplayGridlines(false);  

//Set Value.  
worksheet.getRange("B1").setValue("To-Do List");  
worksheet.getRange("B2:I7").setValue(data);  

//Set formula.  
worksheet.getRange("E3").setFormula("=TODAY()");  
worksheet.getRange("E4").setFormula("=TODAY()-30");

3.通讯簿(GcExcelController.java):

Workbook workbook = new Workbook();  

IWorksheet worksheet = workbook.getWorksheets().get(0);  

// ***************************Set RowHeight & Width****************************  
worksheet.setStandardHeight(30);  
worksheet.getRange("3:4").setRowHeight(30.25);  
worksheet.getRange("1:1").setRowHeight(103.50);  
worksheet.getRange("2:2").setRowHeight(38.25);  
worksheet.getRange("A:A").setColumnWidth(2.625);  
worksheet.getRange("B:B").setColumnWidth(22.25);  


// *******************************Set Table Value &  
// Formulas*************************************  
ITable table = worksheet.getTables().add(worksheet.getRange("B2:L4"), true);  
worksheet.getRange("B2:L4")  
 .setValue(new Object[][] { { "NAME", "WORK", "CELL", "HOME", "EMAIL", "BIRTHDAY", "ADDRESS", "CITY", "STATE", "ZIP", "NOTE" },  
 { "Kim Abercrombie", 1235550123, 1235550123, 1235550123, "someone@example.com", null, "123 N. Maple", "Cherryville", "WA", 98031, "" },  
 { "John Smith", 3215550123L, "", "", "someone@example.com", null, "456 E. Aspen", "", "", "", "" }, });  
worksheet.getRange("B1").setValue("ADDRESS BOOK");  
worksheet.getRange("G3").setFormula("=TODAY()");  
worksheet.getRange("G4").setFormula("=TODAY()+5");  

// ****************************Set Table Style********************************  
ITableStyle tableStyle = workbook.getTableStyles().add("Personal Address Book");  
workbook.setDefaultTableStyle("Personal Address Book");  

// Set WholeTable element style.  
// Set FirstColumn element style.  
tableStyle.getTableStyleElements().get(TableStyleElementType.*FirstColumn*).getFont().setBold(true);  

// Set SecondColumns element style.  
tableStyle.getTableStyleElements().get(TableStyleElementType.*HeaderRow*).getBorders().setColor(Color.*FromArgb*(179, 35, 23));  
tableStyle.getTableStyleElements().get(TableStyleElementType.*HeaderRow*).getBorders().get(BordersIndex.*EdgeTop*).setLineStyle(BorderLineStyle.*Thick*);  
tableStyle.getTableStyleElements().get(TableStyleElementType.*HeaderRow*).getBorders().get(BordersIndex.*EdgeBottom*).setLineStyle(BorderLineStyle.*Thick*);

完整代码:

想要获取完整代码的童鞋可以访问点击下方链接:

https://github.com/GrapeCityXA/GcExcel-Java/tree/master (Github)

https://gitee.com/GrapeCity/GcExcel-Java (Gitee)

使用SpringBoot+React搭建一个Excel报表平台,spring boot,react.js,excel

本项目为前后端一体化,拉取完整代码后直接使用IDEA打开下载资源包后运行即可。

运行后的默认端口为localhost:8080。除此之外,还可以访问GcExcel官网了解更多有关于报表的功能。

扩展链接:

项目实战:在线报价采购系统(React +SpreadJS+Echarts)

Spring Boot框架下实现Excel服务端导入导出

嵌入式BI 与OEM模式文章来源地址https://www.toymoban.com/news/detail-566896.html

到了这里,关于使用SpringBoot+React搭建一个Excel报表平台的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 【微信小程序】导出 Excel 报表并分享,使用xlsx库生成 Excel,使用echars插入图表、使用pdfmake导出为PDF文件

    要在微信小程序中导出 Excel 报表并分享,可以使用第三方库 xlsx 来生成 Excel 文件,并使用 wx.saveFile 方法将文件保存到本地,然后使用 wx.shareFile 方法来分享文件。 以下是一个示例代码,演示如何在微信小程序中导出 Excel 报表并分享: 首先,安装依赖库 xlsx ,可以使用 npm

    2024年02月13日
    浏览(142)
  • 一个简单的增删改查Spring boot项目教程(完整过程,附代码)(从搭建数据库到实现增删改查功能),Springboot学习,Springboot项目,

    这里将会介绍怎么去搭建一个简单增删改查的Springboot项目,认真看完我相信你一定能够学会,并且附有完整代码; 首先要进行增删改查肯定是要有供操作的数据库; 这里我是用的SQLyog来搭建的,随便用什么都可以,只要能确保给项目一个配套的数据库就行; 打开IDEA,创建

    2024年02月15日
    浏览(66)
  • 搭建一个简单的react工程

    首先,需要确保安装了 Node.js 和 npm。可以在命令行中输入 node -v 和 npm -v 命令来检查版本。 创建一个新的项目目录,并进入该目录。 在命令行中运行以下命令来初始化 npm 项目: 这将创建一个名为 package.json 的文件,其中包含了项目的依赖和配置信息。 安装 React 和 ReactDOM

    2023年04月22日
    浏览(40)
  • 【微服务笔记23】使用Spring Cloud微服务组件从0到1搭建一个微服务工程

    这篇文章,主要介绍如何使用Spring Cloud微服务组件从0到1搭建一个微服务工程。 目录 一、从0到1搭建微服务工程 1.1、基础环境说明 (1)使用组件 (2)微服务依赖 1.2、搭建注册中心 (1)引入依赖 (2)配置文件 (3)启动类 1.3、搭建配置中心 (1)引入依赖 (2)配置文件

    2024年02月01日
    浏览(36)
  • 从零搭建一个react + electron项目

    最近打算搭建一个react + electron的项目,发现并不是那么傻瓜式 于是记录一下自己的实践步骤 通过create-react-app 创建react项目 安装electron依赖 暴露react项目的配置文件 (这一步看自己需求,我需要改目录结构) 在package.json中有一个eject命令,直接执行就可以,执行前要保证没

    2024年02月14日
    浏览(36)
  • Excel报表框架(ExcelReport)极简化解决复杂报表导出问题

    耗费了半个月的时间,终于在元旦这三天把报表框架开发完成了,使用该框架你可以非常方便的导出 复杂的Excel报表 。 项目开源地址: Gitee Github 不知道各位在使用POI开发报表导出过程中遇到过以下的情况: 频繁的使用中间变量记录报表数据写到那个Cell中了。 一个复杂的报

    2024年02月03日
    浏览(49)
  • React--》从零开始搭建一个文章后台管理系统

    目录 项目准备 项目搭建 scss预处理器的使用 配置基础路由 组件库antd的使用 开发者工具的安装 登录模块 基本样式搭建 创建表单结构 获取表单数据并进行相关登录操作 对登录模块的token进行相关处理 路由鉴权实现 后台页面模块 基本页面结构搭建 菜单高亮显示 展示个人信

    2023年04月17日
    浏览(49)
  • 用低代码平台代替Excel搭建进销存管理系统

    目录 一、用低代码平台搭建系统 1.需求调研 2.基于痛点梳理业务流程 3.低代码实现 (1)基础资料模块 (2)采购管理模块 (3)销售管理模块 (4)库存管理模块 (5)财务管理模块 二、总结低代码平台的关键要素 1. 表单引擎 2. 流程引擎 3. 报表和门户 如何用 Excel 搭建一个

    2024年02月06日
    浏览(43)
  • electron27+react18集成搭建跨平台应用|electron窗口多开

    electron27-vite4-react18基于electron27结合vite4构建工具快速创建react18跨端应用实践。 版本列表 快速创建react18项目 这里选择使用vite.js构建工具来快速创建一个react18项目。 这样一个简单的react18项目就已经创建完毕了。 安装electron依赖包 注意:electron依赖安装在 devDependencies 里面。

    2024年02月08日
    浏览(56)
  • Apache POI 导出Excel报表

    大家好我是苏麟 , 今天聊聊Apache POI . 介绍 Apache POI 是一个处理Miscrosoft Office各种文件格式的开源项目。简单来说就是,我们可以使用 POI 在 Java 程序中对Miscrosoft Office各种文件进行读写操作。 一般情况下,POI 都是用于操作 Excel 文件。 官网 : Apache POI - the Java API for Microsoft Do

    2024年01月17日
    浏览(44)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包