本文介绍了FILLO库从Excel读取数据(无法配置)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想从excel文件中读取/写入文件,并通过Internet搜索,得到 FILLO 库.我只是将那个.jar文件导入到我的netbeans项目中

I want to read/write from/to excel file and I searched through Internet, I got FILLO library. I just import that .jar file into my netbeans Project

请检查图像

我不知道是否遗漏了任何东西.任何人都知道,请帮助我.

I dont know, if I'm missing anything. Anyone who know, Please help me.

推荐答案

尝试以下对我有用的方法,

Try the following it worked for me,

  1. 使用Fillo jar的最新版本fillo-1.18.jar
  2. 并导入以下内容

  1. Use the latest version of Fillo jar which is fillo-1.18.jar
  2. And import following

import Exception.FilloException;
import Fillo.Connection;
import Fillo.Fillo;
import Fillo.Recordset;

记录集,连接包含在jdk和fillo中,但具有一些不同的特征

Recordset, Connection are include in jdk and fillo but with some different characteristics

这篇关于FILLO库从Excel读取数据(无法配置)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-23 16:33