本文目录一览:

java如何读取整个excel文件的内容

工具:

参考代码及注释如下:

import Java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import org.apache.poi.hssf.usermodel.HSSFWorkbook; import org.apache.poi.ss.usermodel.Cell; import org.apache.poi.ss.usermodel.Row; import org.apache.poi.ss.usermodel.Sheet; import org.apache.poi.ss.usermodel.Workbook; public class ReadExcel { public static void readExcel(File file){ try { InputStream inputStream = new FileInputStream(file); String fileName = file.getName(); Workbook wb = null; // poi-3.9.jar 只可以读取2007以下的版本,后缀为:xsl wb = new HSSFWorkbook(inputStream);//解析xls格式 Sheet sheet = wb.getSheetAt(0);//第一个工作表 ,第二个则为1,以此类推... int firstRowIndex = sheet.getFirstRowNum(); int lastRowIndex = sheet.getLastRowNum(); for(int rIndex = firstRowIndex; rIndex = lastRowIndex; rIndex ++){ Row row = sheet.getRow(rIndex); if(row != null){ int firstCellIndex = row.getFirstCellNum(); // int lastCellIndex = row.getLastCellNum(); //此处参数cIndex决定可以取到excel的列数。 for(int cIndex = firstCellIndex; cIndex 3; cIndex ++){ Cell cell = row.getCell(cIndex); String value = ""; if(cell != null){ value = cell.toString(); System.out.print(value+"/t"); } } System.out.println(); } } } catch (FileNotFoundException e) { // TODO 自动生成 catch 块 e.printStackTrace(); } catch (IOException e) { // TODO 自动生成 catch 块 e.printStackTrace(); } } public static void main(String[] args) { File file = new File("D:/test.xls"); readExcel(file); }}

java中怎样从Excel中读写数据

1、生成EXCEL需要手动写查询语句把ORACLE数据库中的数据查询出来,再通过操作写到EXCEL文件里面。

2、通过EXCEL把数据读取到ORACLE,同样需要去读取EXCEL工作薄里面的内容,再通过INSERT语句去插入数据库操作。

示例:

包括从Excel读取数据,生成新的Excel,以及修改Excel

java怎么读取excel文件里的数据

下面是一个简单的读取例子,如果报“java.io.IOException: Invalid header signature; read 4503608217567241, expected -2226271756974174256”之类的异常请用Excel打开(如果能打的开的话)然后另存为一下。

import java.io.BufferedInputStream;

import java.io.File;

import java.io.FileInputStream;

import java.io.FileNotFoundException;

import java.io.IOException;

import java.text.DecimalFormat;

import java.text.SimpleDateFormat;

import java.util.ArrayList;

import java.util.Arrays;

import java.util.Date;

import java.util.List;

import org.apache.poi.hssf.usermodel.HSSFCell;

import org.apache.poi.hssf.usermodel.HSSFDateUtil;

import org.apache.poi.hssf.usermodel.HSSFRow;

import org.apache.poi.hssf.usermodel.HSSFSheet;

import org.apache.poi.hssf.usermodel.HSSFWorkbook;

import org.apache.poi.poifs.filesystem.POIFSFileSystem;

public class Test0 {

 /**

  * @param args

  * @throws IOException

  * @throws FileNotFoundException

  */

 public static void main(String[] args) throws FileNotFoundException,

   IOException {

  File file = new File("C://test01.xls");// Excel文件路径

  String[][] result = getData(file, 1);

  int rowLength = result.length;

  for (int i = 0; i  rowLength; i++) {

   for (int j = 0; j  result[i].length; j++) {

    System.out.print(result[i][j] + "/t/t");

   }

   System.out.println();

  }

 }

 /**

  * 读取Excel的内容,第一维数组存储的是一行中格列的值,二维数组存储的是多少个行

  * 

  * @param file

  *            读取数据的源Excel

  * @param ignoreRows

  *            读取数据忽略的行数,比喻行头不需要读入 忽略的行数为1

  * @return 读出的Excel中数据的内容

  * @throws FileNotFoundException

  * @throws IOException

  */

 public static String[][] getData(File file, int ignoreRows)

   throws FileNotFoundException, IOException {

  ListString[] result = new ArrayListString[]();

  int rowSize = 0;

  BufferedInputStream in = new BufferedInputStream(new FileInputStream(

    file));

  // 打开HSSFWorkbook

  POIFSFileSystem fs = new POIFSFileSystem(in);

  HSSFWorkbook wb = new HSSFWorkbook(fs);

  HSSFCell cell = null;

  for (int sheetIndex = 0; sheetIndex  wb.getNumberOfSheets(); sheetIndex++) {

   HSSFSheet st = wb.getSheetAt(sheetIndex);

   // 第一行为标题,不取

   for (int rowIndex = ignoreRows; rowIndex = st.getLastRowNum(); rowIndex++) {

    HSSFRow row = st.getRow(rowIndex);

    if (row == null) {

     continue;

    }

    int tempRowSize = row.getLastCellNum() + 1;

    if (tempRowSize  rowSize) {

     rowSize = tempRowSize;

    }

    String[] values = new String[rowSize];

    Arrays.fill(values, "");

    boolean hasValue = false;

    for (short columnIndex = 0; columnIndex = row.getLastCellNum(); columnIndex++) {

     String value = "";

     cell = row.getCell(columnIndex);

     if (cell != null) {

      // 注意:一定要设成这个,否则可能会出现乱码

      cell.setEncoding(HSSFCell.ENCODING_UTF_16);

      switch (cell.getCellType()) {

      case HSSFCell.CELL_TYPE_STRING:

       value = cell.getStringCellValue();

       break;

      case HSSFCell.CELL_TYPE_NUMERIC:

       if (HSSFDateUtil.isCellDateFormatted(cell)) {

        Date date = cell.getDateCellValue();

        if (date != null) {

         value = new SimpleDateFormat("yyyy-MM-dd")

           .format(date);

        } else {

         value = "";

        }

       } else {

        value = new DecimalFormat("0").format(cell

          .getNumericCellValue());

       }

       break;

      case HSSFCell.CELL_TYPE_FORMULA:

       // 导入时如果为公式生成的数据则无值

       if (!cell.getStringCellValue().equals("")) {

        value = cell.getStringCellValue();

       } else {

        value = cell.getNumericCellValue() + "";

       }

       break;

      case HSSFCell.CELL_TYPE_BLANK:

       break;

      case HSSFCell.CELL_TYPE_ERROR:

       value = "";

       break;

      case HSSFCell.CELL_TYPE_BOOLEAN:

       value = (cell.getBooleanCellValue() == true ? "Y"

         : "N");

       break;

      default:

       value = "";

      }

     }

     if (columnIndex == 0  value.trim().equals("")) {

      break;

     }

     values[columnIndex] = rightTrim(value);

     hasValue = true;

    }

    if (hasValue) {

     result.add(values);

    }

   }

  }

  in.close();

  String[][] returnArray = new String[result.size()][rowSize];

  for (int i = 0; i  returnArray.length; i++) {

   returnArray[i] = (String[]) result.get(i);

  }

  return returnArray;

 }

 /**

  * 去掉字符串右边的空格

  * 

  * @param str

  *            要处理的字符串

  * @return 处理后的字符串

  */

 public static String rightTrim(String str) {

  if (str == null) {

   return "";

  }

  int length = str.length();

  for (int i = length - 1; i = 0; i--) {

   if (str.charAt(i) != 0x20) {

    break;

   }

   length--;

  }

  return str.substring(0, length);

 }

}

java如何读取整个excel文件的内容?

在java程序添加spire.xls.jar依赖

import com.spire.xls.*;

public class ReadExcel {

    public static void main(String[] args) {

        //创建Workbook对象

        Workbook wb = new Workbook();

        //加载一个Excel文档

        wb.loadFromFile("C://Users//Administrator//Desktop//test.xlsx");

        //获取第一个工作表

        Worksheet sheet = wb.getWorksheets().get(0);

        //遍历工作表的每一行

        for (int i = 1; i  sheet.getLastRow() + 1; i++) {

            //遍历工作的每一列

            for (int j = 1; j  sheet.getLastColumn() + 1; j++) {

                //输出指定单元格的数据

                System.out.print(sheet.get(i,j).getText());

                System.out.print("/t");

            }

            System.out.print("/n");

        }

    }

}

java怎么读取excel数据

引入poi的jar包,大致如下:

读取代码如下,应该能看得明白吧

import java.io.FileInputStream;

import java.io.FileNotFoundException;

import java.io.IOException;

import java.io.InputStream;

import java.math.BigDecimal;

import java.text.DecimalFormat;

import java.text.SimpleDateFormat;

import org.apache.poi.xssf.usermodel.XSSFCell;

import org.apache.poi.xssf.usermodel.XSSFRow;

import org.apache.poi.xssf.usermodel.XSSFSheet;

import org.apache.poi.xssf.usermodel.XSSFWorkbook;

public class ExcelUtil2007 {

/**读取excel文件流的指定索引的sheet

 * @param inputStream excel文件流

 * @param sheetIndex 要读取的sheet的索引

 * @return

 * @throws FileNotFoundException

 * @throws IOException

 */

public static XSSFSheet readExcel(InputStream inputStream,int sheetIndex) throws FileNotFoundException, IOException

{

return readExcel(inputStream).getSheetAt(sheetIndex);

}

/**读取excel文件的指定索引的sheet

 * @param filePath excel文件路径

 * @param sheetIndex 要读取的sheet的索引

 * @return

 * @throws IOException 

 * @throws FileNotFoundException 

 */

public static XSSFSheet readExcel(String filePath,int sheetIndex) throws FileNotFoundException, IOException

{

return readExcel(filePath).getSheetAt(sheetIndex);

}

/**读取excel文件的指定索引的sheet

 * @param filePath excel文件路径

 * @param sheetName 要读取的sheet的名称

 * @return

 * @throws IOException 

 * @throws FileNotFoundException 

 */

public static XSSFSheet readExcel(String filePath,String sheetName) throws FileNotFoundException, IOException

{

return readExcel(filePath).getSheet(sheetName);

}

/**读取excel文件,返回XSSFWorkbook对象

 * @param filePath excel文件路径

 * @return 

 * @throws FileNotFoundException

 * @throws IOException

 */

public static XSSFWorkbook readExcel(String filePath) throws FileNotFoundException, IOException

{

XSSFWorkbook wb=new XSSFWorkbook(new FileInputStream(filePath));

return wb;

}

/**读取excel文件流,返回XSSFWorkbook对象

 * @param inputStream excel文件流

 * @return

 * @throws FileNotFoundException

 * @throws IOException

 */

public static XSSFWorkbook readExcel(InputStream inputStream) throws FileNotFoundException, IOException

{

XSSFWorkbook wb=new XSSFWorkbook(inputStream);

return wb;

}

/***读取excel中指定的单元格,并返回字符串形式的值

 * 1.数字

 * 2.字符

 * 3.公式(返回的为公式内容,非单元格的值)

 * 4.空

 * @param st 要读取的sheet对象

 * @param rowIndex 行索引

 * @param colIndex 列索引

 * @param isDate 是否要取的是日期(是则返回yyyy-MM-dd格式的字符串)

 * @return

 */

public static String getCellString(XSSFSheet st,int rowIndex,int colIndex,boolean isDate){

String s="";

XSSFRow row=st.getRow(rowIndex);

if(row == null) return "";

XSSFCell cell=row.getCell(colIndex);

if(cell == null) return "";

if (cell.getCellType() == 0) {//数字

if(isDate)s=new SimpleDateFormat("yyyy-MM-dd").format(cell.getDateCellValue());

else s = trimPointO(String.valueOf(getStringValue(cell)).trim());

}else if (cell.getCellType() == 1){//字符(excel中的空格,不是全角,也不是半角,不知道是神马,反正就是" "这个)

s=cell.getRichStringCellValue().getString().replaceAll(" ", " ").trim();

// s=cell.getStringCellValue();//07API新增,好像跟上一句一致

}

else if (cell.getCellType() == 2){//公式

s=cell.getCellFormula();

}

else if (cell.getCellType() == 3){//空

s="";

}

return s;

}

/**如果数字以 .0 结尾,则去掉.0

 * @param s

 * @return

 */

public static String trimPointO(String s) {

if (s.endsWith(".0"))

return s.substring(0, s.length() - 2);

else

return s;

}

/**处理科学计数法和百分比模式的数字单元格

 * @param cell

 * @return

 */

public static String getStringValue(XSSFCell cell) {

String sValue = null;

short dataFormat = cell.getCellStyle().getDataFormat();

double d = cell.getNumericCellValue();

BigDecimal b = new BigDecimal(Double.toString(d));

//百分比样式的

if (dataFormat == 0xa || dataFormat == 9) {

b=b.multiply(new BigDecimal(100));

//String temp=b.toPlainString();

DecimalFormat df=new DecimalFormat("0.00");//保留两位小数的百分比格式

sValue = df.format(b) + "%";

}else{

sValue = b.toPlainString();

}

return sValue;

}

}