Exce表格网

用java读取excel数据(如何用java读取excel文件写到数据库中)

来源:www.0djx.com  时间:2023-01-16 18:25   点击:217  编辑:表格网  手机版

1. 如何用java读取excel文件写到数据库中

代码如下: import java.io.*; import jxl.*; import jxl.write.*; public class CreateXLS { public static void main(String args[]) { try { //打开文件 WritableWorkbook book= Workbook.createWorkbook(new File("测试.xls")); //生成名为“第一页”的工作表,参数0表示这是第一页 WritableSheet sheet=book.createSheet("第一页",0); //在Label对象的构造子中指名单元格位置是第一列第一行(0,0) //以及单元格内容为test Label label=new Label(0,0,"test"); //将定义好的单元格添加到工作表中 sheet.addCell(label); /*生成一个保存数字的单元格 必须使用Number的完整包路径,否则有语法歧义 单元格位置是第二列,第一行,值为789.123*/ jxl.write.Number

number = new jxl.write.Number(1,0,789.123); sheet.addCell(number); //写入数据并关闭文件 book.write(); book.close(); }catch(Exception e) { System.out.println(e); } } }

2. java的excel的读取和写入

首先你要明白导入文件步骤:

1.实例化excel读取对象

2.加载excel文件

全部加载

选择加载

3.读取excel文件

全部读取

逐行读取

以下你看看那个更加适应你

顺便列出几个其他语言导入Excel文件,希望对你有帮助

PHP导入Excel文件

java把Excel文件数据导入数据库

PHP实现导出Excel文件通用方法

JXL生成的excel文件+JAVA文件下载功能

Java通用的Excel文件生成工具类,支持生成文件和浏览器直接下载

java处理Excel文件---excel文件的创建,删除,写入,读取

Java读取Excel文件

jxl解析Excel文件

JXL操作Excel文件

java POI读取Excel文件

java使用poi读取excel文件代码示例

用jxl生成Excel文件

PHP验证码文件类

PHP 下载远程文件

PHP获取远程文件的大小

php压缩CSS文件

PHP强制下载文件

php读取csv文件类

php 简单ftp文件上传范例

一个php 生成zip文件的类

3. java 读excel文件

importjxl.Workbook;importjxl.format.Colour;importjxl.write.*

;importjava.io.File;publicclassTest{publicstaticvoidmain(String[]args)throwsException{WritableWorkbookworkbook=Workbook.createWorkbook(newFile("test.xls"))

;WritableSheetsheet=workbook.createSheet("test",0)

;WritableCellcell=newLabel(0,0,"test")

;WritableCellFormatwritableCellFormat=newWritableCellFormat()

;writableCellFormat.setBackground(Colour.RED)

;cell.setCellFormat(writableCellFormat)

;sheet.addCell(cell);workbook.write();workbook.close();}}

4. java读取excel文件内容并输出

前台页面?是b/s程序?

如果是b/s程序那打印就是在服务端接的打印机里打印出来,这个时候最好是不要有预览,否则服务程序就挂起来了不会继续执行。

如果是在前台打印那使用js来操作。你点击按钮后,后台读取excel文件并用一个页面显示出预览效果,再用js自动调用页面的打印就可以在前台电脑带的打印机打印出来了。

5. java excel读取

参考代码:

from xlrd import open_workbook

book = open_workbook('simple.xls',on_demand=True)

for name in book.sheet_names():

if name.endswith('2'):

sheet = book.sheet_by_name(name)

# Attempt to find a matching row (search the first column for 'john')

rowIndex = -1

for cell in sheet.col(0): #

if 'john' in cell.value:

break

# If we found the row, print it

if row != -1:

cells = sheet.row(row)

for cell in cells:

print cell.value

book.unload_sheet(name)

顶一下
(0)
0%
踩一下
(0)
0%
相关评论
我要评论
用户名: 验证码:点击我更换图片