首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

excel、json互转

前端 2.4MB 12 需要积分: 1
立即下载

资源介绍:

excel、json互转
# [SheetJS](https://sheetjs.com) The SheetJS Community Edition offers battle-tested open-source solutions for extracting useful data from almost any complex spreadsheet and generating new spreadsheets that will work with legacy and modern software alike. [SheetJS Pro](https://sheetjs.com/pro) offers solutions beyond data processing: Edit complex templates with ease; let out your inner Picasso with styling; make custom sheets with images/graphs/PivotTables; evaluate formula expressions and port calculations to web apps; automate common spreadsheet tasks, and much more! ![License](https://img.shields.io/github/license/SheetJS/sheetjs) [![Build Status](https://img.shields.io/github/workflow/status/sheetjs/sheetjs/Tests:%20node.js)](https://github.com/SheetJS/sheetjs/actions) [![Snyk Vulnerabilities](https://img.shields.io/snyk/vulnerabilities/github/SheetJS/sheetjs)](https://snyk.io/test/github/SheetJS/sheetjs) [![npm Downloads](https://img.shields.io/npm/dm/xlsx.svg)](https://npmjs.org/package/xlsx) [![Analytics](https://ga-beacon.appspot.com/UA-36810333-1/SheetJS/sheetjs?pixel)](https://github.com/SheetJS/sheetjs) [**Browser Test and Support Matrix**](https://oss.sheetjs.com/sheetjs/tests/) [![Build Status](https://saucelabs.com/browser-matrix/sheetjs.svg)](https://saucelabs.com/u/sheetjs) **Supported File Formats** ![circo graph of format support](formats.png) ![graph legend](legend.png) ## Table of Contents
Expand to show Table of Contents - [Getting Started](#getting-started) * [Installation](#installation) * [Usage](#usage) * [The Zen of SheetJS](#the-zen-of-sheetjs) * [JS Ecosystem Demos](#js-ecosystem-demos) - [Acquiring and Extracting Data](#acquiring-and-extracting-data) * [Parsing Workbooks](#parsing-workbooks) * [Processing JSON and JS Data](#processing-json-and-js-data) * [Processing HTML Tables](#processing-html-tables) - [Processing Data](#processing-data) * [Modifying Workbook Structure](#modifying-workbook-structure) * [Modifying Cell Values](#modifying-cell-values) * [Modifying Other Worksheet / Workbook / Cell Properties](#modifying-other-worksheet--workbook--cell-properties) - [Packaging and Releasing Data](#packaging-and-releasing-data) * [Writing Workbooks](#writing-workbooks) * [Writing Examples](#writing-examples) * [Streaming Write](#streaming-write) * [Generating JSON and JS Data](#generating-json-and-js-data) * [Generating HTML Tables](#generating-html-tables) * [Generating Single-Worksheet Snapshots](#generating-single-worksheet-snapshots) - [Interface](#interface) * [Parsing functions](#parsing-functions) * [Writing functions](#writing-functions) * [Utilities](#utilities) - [Common Spreadsheet Format](#common-spreadsheet-format) * [General Structures](#general-structures) * [Cell Object](#cell-object) + [Data Types](#data-types) + [Dates](#dates) * [Sheet Objects](#sheet-objects) + [Worksheet Object](#worksheet-object) + [Chartsheet Object](#chartsheet-object) + [Macrosheet Object](#macrosheet-object) + [Dialogsheet Object](#dialogsheet-object) * [Workbook Object](#workbook-object) + [Workbook File Properties](#workbook-file-properties) * [Workbook-Level Attributes](#workbook-level-attributes) + [Defined Names](#defined-names) + [Workbook Views](#workbook-views) + [Miscellaneous Workbook Properties](#miscellaneous-workbook-properties) * [Document Features](#document-features) + [Formulae](#formulae) + [Row and Column Properties](#row-and-column-properties) + [Number Formats](#number-formats) + [Hyperlinks](#hyperlinks) + [Cell Comments](#cell-comments) + [Sheet Visibility](#sheet-visibility) + [VBA and Macros](#vba-and-macros) - [Parsing Options](#parsing-options) * [Input Type](#input-type) * [Guessing File Type](#guessing-file-type) - [Writing Options](#writing-options) * [Supported Output Formats](#supported-output-formats) * [Output Type](#output-type) - [Utility Functions](#utility-functions) * [Array of Arrays Input](#array-of-arrays-input) * [Array of Objects Input](#array-of-objects-input) * [HTML Table Input](#html-table-input) * [Formulae Output](#formulae-output) * [Delimiter-Separated Output](#delimiter-separated-output) + [UTF-16 Unicode Text](#utf-16-unicode-text) * [HTML Output](#html-output) * [JSON](#json) - [File Formats](#file-formats) - [Testing](#testing) * [Node](#node) * [Browser](#browser) * [Tested Environments](#tested-environments) * [Test Files](#test-files) - [Contributing](#contributing) * [OSX/Linux](#osxlinux) * [Windows](#windows) * [Tests](#tests) - [License](#license) - [References](#references)
## Getting Started ### Installation **Standalone Browser Scripts** The complete browser standalone build is saved to `dist/xlsx.full.min.js` and can be directly added to a page with a `script` tag: ```html ```
CDN Availability (click to show) | CDN | URL | |-----------:|:-------------------------------------------| | `unpkg` | | | `jsDelivr` | | | `CDNjs` | | For example, `unpkg` makes the latest version available at: ```html ```
Browser builds (click to show) The complete single-file version is generated at `dist/xlsx.full.min.js` `dist/xlsx.core.min.js` omits codepage library (no support for XLS encodings) A slimmer build is generated at `dist/xlsx.mini.min.js`. Compared to full build: - codepage library skipped (no support for XLS encodings) - no support for XLSB / XLS / Lotus 1-2-3 / SpreadsheetML 2003 / Numbers - node stream utils removed
With [bower](https://bower.io/search/?q=js-xlsx): ```bash $ bower install js-xlsx ``` **ECMAScript Modules** The ECMAScript Module build is saved to `xlsx.mjs` and can be directly added to a page with a `script` tag using `type=module`: ```html ``` The [npm package](https://www.npmjs.org/package/xlsx) also exposes the module with the `module` parameter, supported in Angular and other projects: ```ts import { read, writeFileXLSX } from "xlsx"; /* load the codepage support library for extended support with older formats */ import { set_cptable } from "xlsx"; import * as cptable from 'xlsx/dist/cpexcel.full.mjs'; set_cptable(cptable); ``` **Deno** `xlsx.mjs` can be imported in Deno. It is available from `unpkg`: ```ts // @deno-types="https://unpkg.com/xlsx/types/index.d.ts" import * as XLSX from 'https://unpkg.com/xlsx/xlsx.mjs'; /* load the codepage support library for extended support with older formats */ import * as cptable from 'https://unpkg.com/xlsx/dist/cpexcel.full.mjs'; XLSX.set_cptable(cptable); ``` **NodeJS** With [npm](https://www.npmjs.org/package/xlsx): ```bash $ npm install xlsx ``` By default, the module supports `require`: ```js var XLSX = require("xlsx"); ``` The module also ships with `xlsx.mjs` for use with `import`: ```js import * as XLSX from 'xlsx/xlsx.mjs'; /* load 'fs' for readFile and writeFile support */ import * as fs from 'fs'; XLSX.set_fs(fs); /* load 'stream' for stream support */ import { Readable } from 'stream'; XLSX.stream.set_readable(Readable); /* load the codepage support library for extended support with older formats */ import * as cpexcel from 'xlsx/dist

资源文件列表:

excel_json_transform.zip 大约有91个文件
  1. excel_json_transform/data/
  2. excel_json_transform/data/data1.xlsx 8.74KB
  3. excel_json_transform/data/data2.js 124B
  4. excel_json_transform/excelToJson.js 858B
  5. excel_json_transform/jsonToExcel.js 160B
  6. excel_json_transform/node_modules/
  7. excel_json_transform/node_modules/.bin/
  8. excel_json_transform/node_modules/.bin/node-xlsx 746B
  9. excel_json_transform/node_modules/.bin/node-xlsx.CMD 640B
  10. excel_json_transform/node_modules/.bin/node-xlsx.ps1 1.5KB
  11. excel_json_transform/node_modules/.bin/xlsx 710B
  12. excel_json_transform/node_modules/.bin/xlsx.CMD 604B
  13. excel_json_transform/node_modules/.bin/xlsx.ps1 1.44KB
  14. excel_json_transform/node_modules/.package_versions.json 427B
  15. excel_json_transform/node_modules/fs/
  16. excel_json_transform/node_modules/fs/package.json 603B
  17. excel_json_transform/node_modules/fs/README.md 328B
  18. excel_json_transform/node_modules/node-xlsx/
  19. excel_json_transform/node_modules/node-xlsx/dist/
  20. excel_json_transform/node_modules/node-xlsx/dist/bin/
  21. excel_json_transform/node_modules/node-xlsx/dist/bin/cli.cjs 3.44KB
  22. excel_json_transform/node_modules/node-xlsx/dist/bin/cli.cjs.map 6.23KB
  23. excel_json_transform/node_modules/node-xlsx/dist/bin/cli.d.cts 21B
  24. excel_json_transform/node_modules/node-xlsx/dist/bin/cli.d.ts 21B
  25. excel_json_transform/node_modules/node-xlsx/dist/bin/cli.js 941B
  26. excel_json_transform/node_modules/node-xlsx/dist/bin/cli.js.map 1.72KB
  27. excel_json_transform/node_modules/node-xlsx/dist/chunk-ID6OMQGT.js 2.5KB
  28. excel_json_transform/node_modules/node-xlsx/dist/chunk-ID6OMQGT.js.map 5.56KB
  29. excel_json_transform/node_modules/node-xlsx/dist/index.cjs 4.25KB
  30. excel_json_transform/node_modules/node-xlsx/dist/index.cjs.map 5.61KB
  31. excel_json_transform/node_modules/node-xlsx/dist/index.d.cts 1.6KB
  32. excel_json_transform/node_modules/node-xlsx/dist/index.d.ts 1.6KB
  33. excel_json_transform/node_modules/node-xlsx/dist/index.js 193B
  34. excel_json_transform/node_modules/node-xlsx/dist/index.js.map 71B
  35. excel_json_transform/node_modules/node-xlsx/LICENSE.md 805B
  36. excel_json_transform/node_modules/node-xlsx/node_modules/
  37. excel_json_transform/node_modules/node-xlsx/node_modules/.bin/
  38. excel_json_transform/node_modules/node-xlsx/node_modules/.bin/xlsx 720B
  39. excel_json_transform/node_modules/node-xlsx/node_modules/.bin/xlsx.CMD 614B
  40. excel_json_transform/node_modules/node-xlsx/node_modules/.bin/xlsx.ps1 1.46KB
  41. excel_json_transform/node_modules/node-xlsx/package.json 1.73KB
  42. excel_json_transform/node_modules/node-xlsx/README.md 5.95KB
  43. excel_json_transform/node_modules/user-home/
  44. excel_json_transform/node_modules/user-home/index.js 56B
  45. excel_json_transform/node_modules/user-home/license 1.09KB
  46. excel_json_transform/node_modules/user-home/node_modules/
  47. excel_json_transform/node_modules/user-home/package.json 887B
  48. excel_json_transform/node_modules/user-home/readme.md 724B
  49. excel_json_transform/node_modules/xlsx/
  50. excel_json_transform/node_modules/xlsx/bin/
  51. excel_json_transform/node_modules/xlsx/bin/xlsx.njs 10.75KB
  52. excel_json_transform/node_modules/xlsx/bower.json 296B
  53. excel_json_transform/node_modules/xlsx/CHANGELOG.md 6.26KB
  54. excel_json_transform/node_modules/xlsx/dist/
  55. excel_json_transform/node_modules/xlsx/dist/cpexcel.full.mjs 461.81KB
  56. excel_json_transform/node_modules/xlsx/dist/cpexcel.js 460.7KB
  57. excel_json_transform/node_modules/xlsx/dist/LICENSE 11.09KB
  58. excel_json_transform/node_modules/xlsx/dist/shim.min.js 5.52KB
  59. excel_json_transform/node_modules/xlsx/dist/xlsx.core.min.js 426.79KB
  60. excel_json_transform/node_modules/xlsx/dist/xlsx.core.min.map 663.51KB
  61. excel_json_transform/node_modules/xlsx/dist/xlsx.extendscript.js 823.24KB
  62. excel_json_transform/node_modules/xlsx/dist/xlsx.full.min.js 861.06KB
  63. excel_json_transform/node_modules/xlsx/dist/xlsx.full.min.map 776.05KB
  64. excel_json_transform/node_modules/xlsx/dist/xlsx.mini.min.js 244.95KB
  65. excel_json_transform/node_modules/xlsx/dist/xlsx.mini.min.map 346.93KB
  66. excel_json_transform/node_modules/xlsx/dist/xlsx.zahl.js 51.59KB
  67. excel_json_transform/node_modules/xlsx/dist/xlsx.zahl.mjs 51.39KB
  68. excel_json_transform/node_modules/xlsx/formats.png 203.73KB
  69. excel_json_transform/node_modules/xlsx/legend.png 32.82KB
  70. excel_json_transform/node_modules/xlsx/LICENSE 11.09KB
  71. excel_json_transform/node_modules/xlsx/node_modules/
  72. excel_json_transform/node_modules/xlsx/node_modules/.bin/
  73. excel_json_transform/node_modules/xlsx/node_modules/.bin/crc32 730B
  74. excel_json_transform/node_modules/xlsx/node_modules/.bin/crc32.CMD 624B
  75. excel_json_transform/node_modules/xlsx/node_modules/.bin/crc32.ps1 1.47KB
  76. excel_json_transform/node_modules/xlsx/package.json 2.15KB
  77. excel_json_transform/node_modules/xlsx/README.md 157.71KB
  78. excel_json_transform/node_modules/xlsx/types/
  79. excel_json_transform/node_modules/xlsx/types/index.d.ts 22.44KB
  80. excel_json_transform/node_modules/xlsx/types/tsconfig.json 380B
  81. excel_json_transform/node_modules/xlsx/xlsx.js 815.8KB
  82. excel_json_transform/node_modules/xlsx/xlsx.mjs 875.11KB
  83. excel_json_transform/node_modules/xlsx/xlsxworker.js 432B
  84. excel_json_transform/out/
  85. excel_json_transform/out/data.xls 64.5KB
  86. excel_json_transform/out/output.json 83B
  87. excel_json_transform/out/output.xls 64.5KB
  88. excel_json_transform/package.json 350B
  89. excel_json_transform/README.md 824B
  90. excel_json_transform/utils/
  91. excel_json_transform/utils/exportByExcel.js 1009B
0评论
提交 加载更多评论
其他资源 基于java SSM springboot学生信息管理系统设计和实现
基于java SSM springboot学生信息管理系统设计和实现
chromeDriver127.0.6533.88
chromedriver爬虫之类的可以下载最新版本,跟我当前版本chrom版本对应 127.0.6533.89
My97DatePicker
My97DatePicker
灰狼优化算法求旅行商问题Matlab代码
灰狼优化算法(Grey Wolf Optimizer,GWO)是一种基于群体智能的优化算法,灵感来源于灰狼在自然界中的狩猎策略和领导层次。该算法由S.Mirjalili等人于2014年提出。灰狼优化算法模拟了灰狼种群的社会等级和狩猎机制。在GWO算法中,搜索空间中的每个解都被视为一只灰狼,而解的适应度值代表其健康状态。算法通过模拟灰狼的狩猎过程来不断迭代更新解,以寻找问题的最优解。 旅行商问题(Traveling Salesman Problem,TSP)是一个经典的组合优化问题,涉及在一系列城市中寻找最短路径,使得旅行者访问每个城市一次并回到起点。这个问题不仅是计算机科学和运筹学领域的一个经典挑战,也具有实际应用价值,例如在物流、交通规划和工业生产线等领域。 代码完整,点击即可运行,可修改数据,适用于新手学习,也适用于论文算法对比。
opencv4 完整源码
opencv源码,如果想要进行编译的小伙伴可以下载进行编译
20240803101257.zip
20240803101257.zip
小月和平自用版美化V10.zip
小月和平自用版美化V10.zip
基于JAVA的健身房管理系统(Vue.js+SpringBoot+MySQL)
基于Vue.js和SpringBoot的健身房管理系统是一个功能全面、易于使用的健身行业解决方案,它分为用户前台和管理后台两个部分,以满足不同角色的需求。用户前台主要面向普通用户,提供课程预约、教练查询、器材使用等功能,方便用户快速了解健身房的相关信息并进行预约。管理后台则为管理员提供了一个强大的管理工具,包括健身房模块、教练管理模块、课程管理模块和器材管理模块,管理员可以轻松地对健身房的各项资源进行管理,如添加或删除教练、设置课程时间表、维护器材信息等。整个系统采用前后端分离的架构,前端使用Vue.js进行开发,后端使用SpringBoot框架,保证了系统的高性能和可扩展性。 演示录屏:https://www.bilibili.com/video/BV1wx4y1H7H2 配套教程:https://www.bilibili.com/video/BV1pW4y1P7GR
基于JAVA的健身房管理系统(Vue.js+SpringBoot+MySQL) 基于JAVA的健身房管理系统(Vue.js+SpringBoot+MySQL) 基于JAVA的健身房管理系统(Vue.js+SpringBoot+MySQL)