Giter VIP home page Giter VIP logo

seminar2012 / easypoi Goto Github PK

View Code? Open in Web Editor NEW

This project forked from kunlyy/easypoi

0.0 0.0 0.0 199 KB

POI tools, export import Excel fast, Excel template derived Word template can be derived, only 5 lines of code you can import and export Excel, modify the export format is simple and crude, fast and effective, worthy of you try easypoi

Home Page: http://www.afterturn.cn

Java 99.87% CSS 0.13%

easypoi's Introduction

EasyPoi Excel & Word Utils

Easypoi functions like the name easy, the flagship feature is easy to let a person who has not seen the POI contact You can easily write Excel export, Excel template export, Excel import, Word template export, and through simple annotations and templates Language (familiar expressions, grammar), complete the previous complex writing

site:http://www.afterturn.cn/
mail: [email protected]
QQ群:  364192721

dev: [email protected]

开发指南-中文

http://www.afterturn.cn/doc/easypoi.html

base demo

testProject: http://git.oschina.net/jueyue/easypoi-test


The main features of EasyPoi

  1. exquisite design, easy to use
  2. interface rich, easy to expand
  3. default values are many, write, less, do, more
  4. AbstractView support, web export can be simple and clear

Several entry tool classes for EasyPoi

  1. ExcelExportUtil Excel export (General export, template export)
  2. ExcelImportUtil Excel import
  3. WordExportUtil Word export (support only docx, Doc version POI exist picture of bug, do not support)

About Excel export XLS and XLSX distinction

  1. export time XLS is 2-3 times faster than XLSX
  2. export size XLS is 2-3 times or more than XLSX
  3. export needs comprehensive speed and speed do consider local ^ ~ ^

Description of several works

  1. easypoi father package - everyone knows
  2. easypoi-annotation foundation annotation package, role and entity object, after splitting convenient Maven multi project dependency management
  3. easypoi-base import and export toolkit, you can complete the Excel export, import, export Word, Excel export function
  4. easypoi-web coupled with spring-mvc, based on AbstractView, greatly simplifying the export function under spring-mvc The 5.sax import uses the xercesImpl package (this package can cause a strange problem), and the word export uses poi-scratchpad as an optional package

maven

		 <dependency>
			<groupId>cn.afterturn</groupId>
			<artifactId>easypoi-base</artifactId>
			<version>3.0.1</version>
		</dependency>
		<dependency>
			<groupId>cn.afterturn</groupId>
			<artifactId>easypoi-web</artifactId>
			<version>3.0.1</version>
		</dependency>
		<dependency>
			<groupId>cn.afterturn</groupId>
			<artifactId>easypoi-annotation</artifactId>
			<version>3.0.1</version>
		</dependency>

pom desc

Word and sax are used only when they are read. They are not necessary. Please refer to them manually. JSR303's check is optional, and PDF's jar is optional

			<!-- sax  -->
			<dependency>
				<groupId>xerces</groupId>
				<artifactId>xercesImpl</artifactId>
				<version>${xerces.version}</version>
				<optional>true</optional>
			</dependency>
			<dependency>
				<groupId>org.apache.poi</groupId>
				<artifactId>poi-scratchpad</artifactId>
				<version>${poi.version}</version>
				<optional>true</optional>
			</dependency>
			
			<!-- Word  -->
            <dependency>
                <groupId>org.apache.poi</groupId>
                <artifactId>ooxml-schemas</artifactId>
                <version>1.3</version>
                <optional>true</optional>
            </dependency>
			
			<!-- validator -->
			<dependency>
				<groupId>org.hibernate</groupId>
				<artifactId>hibernate-validator</artifactId>
				<version>5.1.3.Final</version>
				<optional>true</optional>
			</dependency>
			
			<dependency>
				<groupId>org.apache.bval</groupId>
				<artifactId>org.apache.bval.bundle</artifactId>
				<version>1.1.0</version>
			</dependency>
			
			<!-- PDF -->
			<dependency>
				<groupId>com.itextpdf</groupId>
				<artifactId>itextpdf</artifactId>
				<version>5.5.6</version>
				<optional>true</optional>
			</dependency>

			<dependency>
				<groupId>com.itextpdf</groupId>
				<artifactId>itext-asian</artifactId>
				<version>5.2.0</version>
				<optional>true</optional>
			</dependency>

easypoi's People

Contributors

jueyue avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.