Fillo Excel API - Excel Read Write


FILLO API
  • Fillo is an Excel API for Java.
  • Using Fillo API, we can consider excel sheet as data base and fetch data from excel [.xls OR .xlsx] by passing SQL query.
  • Using Fillo API, we can insert new data and update existing data in Excel File.
Fillo API supports below queries
  • SELECT
  • SELECT WITH WHERE CONDITION
  • SELECT WITH LIKE OPERATOR
  • INSERT
  • UPDATE
  • DELETE
DOWNLOAD FILLO API


  • Fillo Libray can be downloaded from the above URL and configured in the JAVA project to start using it.
  • If you are using MAVEN project then you can add below dependency in the pom.xml file and start using it.

1
2
3
4
5
<dependency>
  <groupId>com.codoid.products</groupId>
  <artifactId>fillo</artifactId>
  <version>1.21</version>
</dependency>

Package Structure :

















pom.xml :




















SELECT QUERY:


Test Data :


Sheet will be considered as Table i.e "PersonalInfo"

Class File to Fetch Data From Excel using SELECT QUERY :


































Output:











SELECT WITH WHERE CONDITION

Class File to Fetch Data From Excel using SELECT QUERY WITH WHERE CONDITION :














Output:








SELECT QUERY WITH LIKE OPERATOR

Class File to Fetch Data From Excel using SELECT QUERY WITH LIKE OPERATOR:

































Output:










UPDATE QUERY

Class File to update Data In Excel using UPDATE QUERY:






















Output:






Updated Test Data:









INSERT QUERY

Class File to insert Data In Excel using INSERT INTO QUERY:



Output:






Updated Test Data:











DELETE QUERY

Class File to delete Data From Excel using DELETE QUERY:





















Output:






Updated Test Data:






















Comments

  1. The article is so appealing. You should read this article before choosing the Big data cloud solutions you want to learn.

    ReplyDelete

Post a Comment

Popular posts from this blog

Encoding and Decoding in Selenium using Base64 Class of Java

Parallel Execution In TestNG Framework Using ThreadLocal Concept

How to handle calendar or date picker using dynamic XPATH?