java导入excle表格,并且对表格进行相应的修改,并对表格数据进行整理,最后导出本地表格等一系列操作

1.首先创建一个java项目

2.导入以下jar包

3.代码如下

public class auto_date {
private static List<List<String>> readExcel(File file) throws Exception {
// 创建输入流,读取Excel
InputStream is = new FileInputStream(file.getAbsolutePath());
// jxl提供的Workbook类
Workbook wb = Workbook.getWorkbook(is);
// 只有一个sheet,直接处理
//创建一个Sheet对象
Sheet sheet = wb.getSheet(0);
// 得到所有的行数
int rows = sheet.getRows();
// 所有的数据
List<List<String>> allData = new ArrayList<List<String>>();
// 越过第一行 它是列名称
for (int j = 1; j < rows; j++) {
List<String> oneData = new ArrayList<String>();
// 得到每一行的单元格的数据
Cell[] cells = sheet.getRow(j);
for (int k = 0; k < cells.length; k++) {
oneData.add(cells[k].getContents().trim());
}
// 存储每一条数据
allData.add(oneData);
// 打印出每一条数据
//System.out.println(oneData);
}
return allData;
}
public static void main(String[] args) {
File file = new File("F://m//1.xls");
//42列
//3337行
try {
List<List<String>> allData=readExcel(file);
//System.out.println("总数:"+allData.size());//总行数
/**
* 创建excle表格
*/
// 第一步,创建一个webbook,对应一个Excel文件
HSSFWorkbook wb = new HSSFWorkbook();
// 第二步,在webbook中添加一个sheet,对应Excel文件中的sheet
HSSFSheet sheet = wb.createSheet("小麦特性表");
// 第三步,在sheet中添加表头第0行,注意老版本poi对Excel的行数列数有限制short
HSSFRow row = sheet.createRow((int) 0);
// 第四步,创建单元格,并设置值表头 设置表头居中
//HSSFCellStyle style = wb.createCellStyle();
//style.setAlignment(HSSFCellStyle.ALIGN_CENTER); // 创建一个居中格式
// HSSFRow row1 = sheet.createRow(0);
HSSFCell cell = row.createCell((short) 0);
cell.setCellValue("所有小麦特征表");
sheet.addMergedRegion(new CellRangeAddress(0,0,0,20));
HSSFRow row2 = sheet.createRow(1);
row2.createCell(0).setCellValue("品种名称");
row2.createCell(1).setCellValue("生态类型");
row2.createCell(2).setCellValue("生育期");
row2.createCell(3).setCellValue("苗性");
row2.createCell(4).setCellValue("叶色");
row2.createCell(5).setCellValue("分蘖力");
row2.createCell(6).setCellValue("株型");
row2.createCell(7).setCellValue("株高");
row2.createCell(8).setCellValue("株高");
row2.createCell(9).setCellValue("穗形");
row2.createCell(10).setCellValue("芒");
row2.createCell(11).setCellValue("壳色");
row2.createCell(12).setCellValue("粒色");
row2.createCell(13).setCellValue("硬度");
row2.createCell(14).setCellValue("籽粒饱满度");
row2.createCell(15).setCellValue("亩穗数");
row2.createCell(16).setCellValue("穗粒数");
row2.createCell(17).setCellValue("千粒重");
row2.createCell(18).setCellValue("熟相");
row2.createCell(19).setCellValue("抗倒性");
row2.createCell(20).setCellValue("抗旱性");
row2.createCell(21).setCellValue("抗寒性1");
row2.createCell(22).setCellValue("抗寒性2");
row2.createCell(23).setCellValue("粗蛋白质");
row2.createCell(24).setCellValue("湿面筋");
row2.createCell(25).setCellValue("降落数值");
row2.createCell(26).setCellValue("沉淀指数");
row2.createCell(27).setCellValue("吸水量");
row2.createCell(28).setCellValue("形成时间");
row2.createCell(29).setCellValue("稳定时间");
row2.createCell(30).setCellValue("弱化度");
row2.createCell(31).setCellValue("出粉率");
row2.createCell(32).setCellValue("延伸性");
row2.createCell(33).setCellValue("拉伸能量");
row2.createCell(34).setCellValue("拉伸面积");
row2.createCell(35).setCellValue("最大拉伸阻力");
row2.createCell(36).setCellValue("容重");
row2.createCell(37).setCellValue("节水性指数1");
row2.createCell(38).setCellValue("节水性指数2");
row2.createCell(39).setCellValue("节水性1");
row2.createCell(40).setCellValue("节水性2");
row2.createCell(41).setCellValue("抗病性1");
row2.createCell(42).setCellValue("抗病性2");

/**
* 导出txt文件
*/
// File writename = new File("G://2.txt"); // 相对路径,如果没有则要建立一个新的output。txt文件
// writename.createNewFile(); // 创建新文件
// BufferedWriter out = new BufferedWriter(new FileWriter(writename));
// out.write("写入文件\r\n"); // \r\n即为换行

//System.out.println(allData);//输出全部
for (int i = 0; i < allData.size(); i++) {
List<String> list=allData.get(i);
HSSFRow row3 = sheet.createRow(i+2);
HSSFCell col0 = row3.createCell(0);
col0.setCellValue(list.get(0));
/**
* 导出txt文件
*/
// out.write("**************************************"+"\r\n");
// out.write("第 "+i+" 个"+"品种名称: "+list.get(0)+"\r\n");
//*************************
//System.out.println(allData.get(i));//逐条输出
//System.out.println(list.get(0));
for (int j = 0; j <list.size(); j++) {
String str=list.get(j);

String newstr=str.replace(",", "。");
String newstr1=newstr.replace(";","。");
String newstr2=newstr1.replace("、","。");
String newstr3=newstr2.replace(";","。");
String newstr4=newstr3.replace(",","。");
//System.out.println(newstr1);
String[] temp;
String delimeter = "。"; // 指定分割字符
temp = newstr4.split(delimeter); // 分割字符串
// 普通 for 循环
for(int q =0; q < temp.length ; q++){
String disease="";
//生态类型
HSSFCell col11 = row3.createCell(1);
//生育周期
HSSFCell col12 = row3.createCell(2);
//苗性
HSSFCell col13 = row3.createCell(3);
//叶色
HSSFCell col14 = row3.createCell(4);
//分蘖力
HSSFCell col15 = row3.createCell(5);
//穗形
HSSFCell col16 = row3.createCell(6);
//芒
HSSFCell col17 = row3.createCell(7);
//壳色
HSSFCell col18 = row3.createCell(8);
//芒
HSSFCell col19 = row3.createCell(9);
//壳
HSSFCell col110 = row3.createCell(10);
//粒色
HSSFCell col111 = row3.createCell(11);
//硬度
HSSFCell col112 = row3.createCell(12);
//籽粒饱满度
HSSFCell col113 = row3.createCell(13);
//亩穗数
HSSFCell col114 = row3.createCell(14);
//穗粒数
HSSFCell col115 = row3.createCell(15);
//千粒重
HSSFCell col116 = row3.createCell(16);
//熟相
HSSFCell col117 = row3.createCell(17);
//抗倒性
HSSFCell col118 = row3.createCell(18);
//抗旱性
HSSFCell col119 = row3.createCell(19);
//抗寒性
HSSFCell col120 = row3.createCell(20);
HSSFCell col121 = row3.createCell(21);
HSSFCell col122 = row3.createCell(22);
HSSFCell col123 = row3.createCell(23);
HSSFCell col124 = row3.createCell(24);
HSSFCell col125 = row3.createCell(25);
HSSFCell col126 = row3.createCell(26);
HSSFCell col127 = row3.createCell(27);
HSSFCell col128 = row3.createCell(28);
HSSFCell col129 = row3.createCell(29);
HSSFCell col130 = row3.createCell(30);
HSSFCell col131 = row3.createCell(31);
HSSFCell col132 = row3.createCell(32);
HSSFCell col133 = row3.createCell(33);
HSSFCell col134 = row3.createCell(34);
HSSFCell col135 = row3.createCell(35);
HSSFCell col136 = row3.createCell(36);
HSSFCell col137 = row3.createCell(37);
HSSFCell col138 = row3.createCell(38);
HSSFCell col139 = row3.createCell(39);
HSSFCell col140 = row3.createCell(40);
HSSFCell col141 = row3.createCell(41);
HSSFCell col142 = row3.createCell(42);
HSSFCell col143 = row3.createCell(43);
for(int r =0; r < temp.length ; r++){
if (temp[r].contains("春性")==true||temp[r].contains("冬性")==true) {

col11.setCellValue(temp[r]);
}
if (temp[r].contains("生育期")==true) {
col12.setCellValue(temp[r]);
}
if (temp[r].contains("幼苗")==true) {
col13.setCellValue(temp[r]);
}
if (temp[r].contains("叶色")==true) {
col14.setCellValue(temp[r]);
}
if (temp[r].contains("分蘖力")==true) {
col15.setCellValue(temp[r]);
}
if (temp[r].contains("株型")==true) {
col16.setCellValue(temp[r]);
}
if (temp[r].contains("株高")==true) {
col17.setCellValue(temp[r]);
}
if (temp[r].contains("穗纺锤")==true||temp[r].contains("穗长方")==true||temp[r].contains("穗棍棒")==true
||temp[r].contains("纺锤型")==true||temp[r].contains("棍棒形")==true
||temp[r].contains("穗型长方形")==true||temp[r].contains("长方穗型")==true) {
col19.setCellValue(temp[r]);
}
if (temp[r].contains("芒")==true) {
col110.setCellValue(temp[r]);
}
if (temp[r].contains("壳")==true) {
col111.setCellValue(temp[r]);
}
if (temp[r].contains("红粒")==true||temp[r].contains("蓝粒")==true||
temp[r].contains("白粒")==true||temp[r].contains("黑粒")==true||temp[r].contains("粒红")==true
||temp[r].contains("粒黑")==true||temp[r].contains("粒白")==true) {
col112.setCellValue(temp[r]);
}
if (temp[r].contains("硬质")==true) {
col113.setCellValue(temp[r]);
}
if (temp[r].contains("饱满")==true) {
col114.setCellValue(temp[r]);
}
if (temp[r].contains("亩穗数")==true) {
col115.setCellValue(temp[r]);
}
if (temp[r].contains("穗粒数")==true) {
col116.setCellValue(temp[r]);
}
if (temp[r].contains("千粒重")==true) {
col117.setCellValue(temp[r]);
}
if (temp[r].contains("熟相")==true) {
col118.setCellValue(temp[r]);
}
if (temp[r].contains("抗倒性")==true) {
col119.setCellValue(temp[r]);
}
if (temp[r].contains("抗旱性")==true) {
col120.setCellValue(temp[r]);
}
if (temp[r].contains("抗寒性")==true) {
col121.setCellValue(temp[r]);
}
// if (temp[r].contains("抗寒性")==true) {
// col122.setCellValue(temp[r]);
// }
if (temp[r].contains("粗蛋白质")==true) {
col123.setCellValue(temp[r]);
}
if (temp[r].contains("湿面筋")==true) {
col124.setCellValue(temp[r]);
}
if (temp[r].contains("降落数值")==true) {
col125.setCellValue(temp[r]);
}
if (temp[r].contains("沉淀指数")==true) {
col126.setCellValue(temp[r]);
}
if (temp[r].contains("吸水量")==true||temp[r].contains("吸水率")==true) {
col127.setCellValue(temp[r]);
}
if (temp[r].contains("形成时间")==true) {
col128.setCellValue(temp[r]);
}
if (temp[r].contains("稳定时间")==true) {
col129.setCellValue(temp[r]);
}
if (temp[r].contains("弱化度")==true) {
col130.setCellValue(temp[r]);
}
if (temp[r].contains("出粉率")==true) {
col131.setCellValue(temp[r]);
}
if (temp[r].contains("延伸性")==true) {
col132.setCellValue(temp[r]);
}
if (temp[r].contains("拉伸能量")==true) {
col133.setCellValue(temp[r]);
}
if (temp[r].contains("拉伸面积")==true) {
col134.setCellValue(temp[r]);
}
if (temp[r].contains("最大拉伸阻力")==true) {
col135.setCellValue(temp[r]);
}
if (temp[r].contains("容重")==true) {
col136.setCellValue(temp[r]);
}
if (temp[r].contains("节水指数")==true) {
col137.setCellValue(temp[r]);
}
// if (temp[r].contains("节水指数2")==true) {
// col138.setCellValue(temp[r]);
// }
if (temp[r].contains("节水性")==true) {
col139.setCellValue(temp[r]);
}
// if (temp[r].contains("节水性2")==true) {
// col140.setCellValue(temp[r]);
// }
/**
* 各种病症
*/
if(temp[r].contains("抗病鉴定")==true){
disease+=temp[r]+":";
}
if(temp[r].contains("叶锈病")==true){
disease+=temp[r]+",";
}
if(temp[r].contains("条锈病")==true){
disease+=temp[r]+",";
}
if(temp[r].contains("白粉病")==true){
disease+=temp[r]+",";
}
if(temp[r].contains("赤霉病")==true){
disease+=temp[r]+",";
}
if(temp[r].contains("抗条锈病")==true){
disease+=temp[r];
}
if(temp[r].contains("纹枯病")==true){
disease+=temp[r];
}
if(temp[r].contains("黄花叶病")==true){
disease+=temp[r];
}
if(temp[r].contains("根腐病")==true){
disease+=temp[r];
}
if(temp[r].contains("秆锈病")==true){
disease+=temp[r];
}
if(temp[r].contains("株期感病")==true){
disease+=temp[r];
}
if(temp[r].contains("株期抗病")==true){
disease+=temp[r];
}
if(temp[r].contains("抗赤霉")==true){
disease+=temp[r];
}
if(temp[r].contains("抗赤霉")==true){
disease+=temp[r];
}
if(true){
col141.setCellValue(disease);
//System.out.println(disease);
}

// if (temp[r].contains("抗病性2")==true) {
// col142.setCellValue(temp[r]);
// }

/**
* 导出txt文件
*/
// out.write("属性: "+temp[r]+"\r\n");

//System.out.println(temp[r]);//输出字符串
}
}
}
//System.out.println(list.get(1));
}

// 第五步,将文件存到指定位置
FileOutputStream fout = new FileOutputStream("F://m//2.xls");
wb.write(fout);
fout.close();
/**
* 关闭txt流
*/
// out.flush(); // 把缓存区内容压入文件
// out.close(); // 最后记得关闭文件
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}

4.做成效果如下图所示

欢迎各位大佬前来交流+QQ:164368701

原文地址:https://www.cnblogs.com/xt-club/p/9934487.html

时间: 2024-11-10 16:09:02

java导入excle表格,并且对表格进行相应的修改,并对表格数据进行整理,最后导出本地表格等一系列操作的相关文章

java中使用poi导出excel表格数据并且可以手动修改导出路径

在我们开发项目中,很多时候会提出这样的需求:将前端的某某数据以excel表格导出,今天就给大家写一个简单的模板. 这里我们选择使用poi导出excel: 第一步:导入需要的jar包到 lib 文件夹下 jar包下载路径:http://download.csdn.net/download/pumpkin09/7077011 第二步:添加poi导出工具类 1 package com.yjd.admin.util; 2 3 import java.io.IOException; 4 import ja

java代码实现导出Excel表格、工具ssm框架、maven、idea

第一步.导入依赖 <!--生成excel文件--> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>3.9</version> </dependency> <dependency> <groupId>org.apache.poi</groupId&g

PHP 和 JS 导入导出csv表格(上)

CSV简介 在开发后台管理系统的时候,几乎无可避免的会遇到需要导入导出Excel表格的需求.csv也是表格的一种,其中文名为"逗号分隔符文件".在Excel中打开如下图左边所示,在记事本打开如下图右边所示: 再看包含特殊字符的表格 与xls或xlsx 表格相类似,CSV文件也是用来表示二维表格.而不同的是: 1.CSV是一种纯文本文件,任何编辑器都能打开并读取它:xls(x)是专用的二进制文件,要用表格软件才能正常打开,否则乱码: 2.CSV的体积很小,比如上面的表格内容,csv只有几

PHP导入导出excel表格图片(转)

写excel的时候,我用过pear的库,也用过pack压包的头,同样那些利用smarty等作的简单替换xml的也用过,csv的就更不用谈了.呵呵.(COM方式不讲了,这种可读的太多了,我也写过利用wps等进行word等的生成之类的文章 )但是在读的时候,只用过一种,具体是什么忘了,要回去翻代码了.基本上导出的文件分为两种:1:类Excel格式,这个其实不是传统意义上的Excel文件,只是因为Excel的兼容能力强,能够正确打开而已.修改这种文件后再保存,通常会提示你是否要转换成Excel文件.优

java 使用poi 结合Struts2导出execl表格

第一步写action方法: public String exportActiveExcel() { String name ="活跃度列表.xls"; try { name = java.net.URLEncoder.encode(name, "UTF-8"); fileName = new String(name.getBytes(), "iso-8859-1"); } catch (UnsupportedEncodingException e

从SQL Server 2005 中 导入 导出 excel 表格

1.从 数据库 中 导出 excel  表格 定义 一个 gridview1 protected void Button1_Click(object sender, EventArgs e) //倒出数据 {     if (GridView1.Rows.Count == 0)   {       return;    }   else  {       GridView1.AllowPaging = false;//先将数据分页取消,才能全部导出数据      bind(); Export("

c# Datagridview控件导入/导出excel表格

在写商业软件的时候,我们会经常遇到对excel表格的操控,最常见的就是Datagridview控件导入/导出excel表格.我也同样遇到了.运用了自己的知识,再加上网上的[大部分]都过期的源码,自己写出了这两个方法,当然,和绑定数据库一样,都用到了databel类. 导入: //private string fileName; /// <summary> /// 将DataGridView中数据导入到Excel /// </summary> /// <param name=&

java中使用jxl导出Excel表格详细通用步骤

该方法一般接收两个参数,response和要导出的表格内容的list. 一般我们将数据库的数据查询出来在页面进行展示,根据用户需求,可能需要对页面数据进行导出. 此时只要将展示之前查询所得的数据放入session中备份一份,在调用导出方法时,从session中获取即可, 如果为后台直接导出,直接查询数据库后将结果传入即可,当然也可以在导出Excel方法中查询. 查询方法: // 获取查询结果存入session中        Object resultList = request.getAttr

SAS 的导入、导出 excel 表格的实现

首先 SAS 可以使用手动来导入,导出 但是这样对于每次操作都需要来手动操作,所以就使用了 SAS 中的宏来编写代码 需求: 1. 首先是给定excel 的文件路径,来生成一个数据集 2. 然后是对数据集中进行数据的处理 3. 最后是对处理好的数据集导出为一个excel 格式的文件 例子: 1 /* 导入excel的数据 */ 2 %macro import_excel(filepath, out); 3 proc import datafile=&filepath out=&out db