Retour au classement

apache/fesod

Javafesod.apache.org

Fast. Easy. Done. Processing spreadsheets without worrying about large files causing OOM.

exceljavaofficecsveasyexcelfast-excelfastexcelpoixlsxlsx
Croissance des étoiles
Étoiles
6.1k
Forks
509
Croissance hebdomadaire
Issues
113
2k4k6k
nov. 2024mai 2025déc. 2025juil. 2026
ArtefactsMavengit clone https://github.com/apache/fesod.git
README

fesod

Readme: English | 中文

GitHub Actions Workflow Status GitHub Actions Workflow Status GitHub Actions Workflow Status GitHub License Maven Central Version Document DeepWiki

Home: fesod.apache.org
Email: Mail to dev-subscribe@fesod.apache.org to subscribe mailing lists

Introduction

Apache Fesod (Incubating) is a high-performance and memory-efficient Java library for reading and writing spreadsheet files, designed to simplify development and ensure reliability.

Apache Fesod (Incubating) can provide developers and enterprises with great freedom and flexibility. We plan to introduce more new features in the future to continually enhance user experience and tool usability. Apache Fesod ( Incubating) is committed to being your best choice for handling spreadsheet files.

The name fesod (pronounced /ˈfɛsɒd/), an acronym for "fast easy spreadsheet and other documents," expresses the project's origin, background, and vision.

Features

  • High-performance Reading and Writing: Apache Fesod (Incubating) focuses on performance optimization, capable of efficiently handling large-scale spreadsheet data. Compared to some traditional spreadsheet processing libraries, it can significantly reduce memory consumption.
  • Simplicity and Ease of Use: The library offers a simple and intuitive API, allowing developers to easily integrate it into projects, whether for simple spreadsheet operations or complex data processing.
  • Stream Operations: Apache Fesod (Incubating) supports stream reading, minimizing the problem of loading large amounts of data at once. This design is especially important when dealing with hundreds of thousands or even millions of rows of data.

Installation

Apache Fesod (Incubating) requires Java 1.8 or later. Using the latest LTS release of Java is encouraged. We strongly recommend using the latest version of Apache Fesod (Incubating), as performance optimizations, bug fixes, and new features in the latest version will enhance your experience.

Currently, Apache Fesod (Incubating) uses POI as its underlying package. If your project already includes POI-related components, you will need to manually exclude POI-related jar files.

Maven

If you are using Maven for project building, add the following configuration in the pom.xml file:


<dependency>
    <groupId>org.apache.fesod</groupId>
    <artifactId>fesod-sheet</artifactId>
    <version>version</version>
</dependency>

Gradle

If you are using Gradle for project building, add the following configuration in the build.gradle file:

dependencies {
    implementation 'org.apache.fesod:fesod-sheet:version'
}

QuickStart

Read

Below is an example of reading a spreadsheet document:

// Implement the ReadListener interface to set up operations for reading data
public class DemoDataListener implements ReadListener<DemoData> {

    @Override
    public void invoke(DemoData data, AnalysisContext context) {
        System.out.println("Parsed a data entry" + JSON.toJSONString(data));
    }

    @Override
    public void doAfterAllAnalysed(AnalysisContext context) {
        System.out.println("All data parsed!");
    }
}

public static void main(String[] args) {
    String fileName = "demo.xlsx";
    // Read spreadsheet file
    FesodSheet.read(fileName, DemoData.class, new DemoDataListener()).sheet().doRead();
}

Write

Below is a simple example of creating a spreadsheet document:

// Sample data class
public class DemoData {

    @ExcelProperty("String Title")
    private String string;

    @ExcelProperty("Date Title")
    private Date date;

    @ExcelProperty("Number Title")
    private Double doubleData;

    @ExcelIgnore
    private String ignore;
}

// Prepare data to write
private static List<DemoData> data() {
    List<DemoData> list = new ArrayList<>();
    for (int i = 0; i < 10; i++) {
        DemoData data = new DemoData();
        data.setString("String" + i);
        data.setDate(new Date());
        data.setDoubleData(0.56);
        list.add(data);
    }
    return list;
}

public static void main(String[] args) {
    String fileName = "demo.xlsx";
    // Create a "Template" sheet and write data
    FesodSheet.write(fileName, DemoData.class).sheet("Template").doWrite(data());
}

Community

Contributors

Contributors are welcomed to join the Apache Fesod (Incubating). Please check Contributing Guide about how to contribute to this project.

Thank you to all the people who already contributed to the Apache Fesod (Incubating) !

Note: Showing the first 100 contributors only due to GitHub image size limitations

Subscribe Mailing Lists

Mail List is the most recognized form of communication in the Apache community. Contact us through the following mailing list.

Name Mailing list
dev@fesod.apache.org SubscribeUnsubscribe

Star History

Star History Chart

License

Apache Fesod (Incubating) project is licensed under the Apache License 2.0.

Dépôts similaires
SheetJS/sheetjs

📗 SheetJS Spreadsheet Data Toolkit -- New home https://git.sheetjs.com/SheetJS/sheetjs

Apache License 2.0xlsxexcel
sheetjs.com
36.3k7.9k
alibaba/easyexcel

快速、简洁、解决大文件内存溢出的java处理Excel工具

JavaMavenApache License 2.0excelpoi
easyexcel.opensource.alibaba.com
33.7k7.6k
handsontable/handsontable

JavaScript Data Grid / Data Table with a Spreadsheet Look & Feel. Works with React, Angular, and Vue. Supported by the Handsontable team ⚡

JavaScriptnpmOtherexcelcrud-operations
handsontable.com/docs
22k3.2k
qax-os/excelize

Go language library for reading and writing Microsoft Excel™ (XLAM / XLSM / XLSX / XLTM / XLTX) spreadsheets

GoGo ModulesBSD 3-Clause "New" or "Revised" Licensexlsxexcel
xuri.me/excelize
20.8k1.9k
iOfficeAI/OfficeCLI

OfficeCLI is the first and best Office suite purpose-built for AI agents to read, edit, and automate Word, Excel, and PowerPoint files. Free, open-source, single binary, no Office installation required.

C#Apache License 2.0agentai
officecli.ai
20.7k1.4k
dream-num/Luckysheet

Luckysheet upgraded to Univer

JavaScriptnpmMIT Licensespreadsheetjavascript
github.com/dream-num/univer/
16.7k2.6k
ag-grid/ag-grid

The best JavaScript Data Table for building Enterprise Applications. Supports React / Angular / Vue / Plain JavaScript.

TypeScriptnpmOtherreactangular
ag-grid.com
15.5k2.1k
myliang/x-spreadsheet

The project has been migrated to @wolf-table/table https://github.com/wolf-table/table

JavaScriptnpmMIT Licensejavascriptspreadsheet
myliang.github.io/x-spreadsheet
14.6k1.8k
PHPOffice/PhpSpreadsheet

A pure PHP library for reading and writing spreadsheet files

PHPPackagistMIT Licensephpspreadsheet
phpspreadsheet.readthedocs.io
14k3.6k
dream-num/univer

Univer is a full-stack framework for creating and editing spreadsheets / word processor / presentation on both web and server.

TypeScriptnpmApache License 2.0data-tableexcel
docs.univer.ai
13.9k1.2k
gotenberg/gotenberg

A developer-friendly API for converting many document formats into PDF files, and more!

GoGo ModulesMIT Licenseapiwkhtmltopdf
gotenberg.dev
12.7k819
OdysseusYuan/LKY_OfficeTools

一键自动化 下载、安装、激活 Office 的利器。

C#GNU General Public License v3.0kmsmicrosoft
foxmail.com
12.3k1.2k