1. java 如何一列一列讀取excel數據。網上好多資料只是讀取前兩三行的例子,我的是讀取一個列下所有的行內容
1、一般java讀取excel數據都是按行讀取,網上的資料都是例子,誰也不會拿個幾千行的excel文件做測試;
2、既然你的文件只有一列,即使是按行讀取也沒有任何問題,只要按行讀取,每行只取你需要的那一列就行了,非常的簡單。
3、主要不是列的問題,是你根本不會java讀取excel文件,網上那麼多的例子也沒看懂。
2. 怎麼用java代碼讀取excel文件
本例使用java來讀取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 ExcelOperate {
public static void main(String[] args) throws Exception {
File file = new File("ExcelDemo.xls");
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 {
List<String[]> result = new ArrayList<String[]>();
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;
}
3. java讀取excel文件內容,可指定讀取某列的數據,求解答,謝謝
getRow(int rownum) 讀取某行,再在這行的基礎上使用Row.getCell(int cellnum)方法。
4. java 讀取Excel 文件時遇到的問題 5.0/7.0 (BIFF5) 與 97/2000/XP/2003(BIFF8)
應該版本問題,老版本的沒試過,poi3.8支持到office2010~2007也沒問題~不過調用的類不一樣方法是一樣的
5. java 如何 判斷 讀入excel文件的版本(20032007) 請高手指點
apache poi
Workbook hssWB = null;
try {
//2003
hssWB = new HSSFWorkbook(new FileInputStream("excel文件"));
} catch (Exception e) {
// TODO: handle exception
//2007
hssWB = new XSSFWorkbook(new FileInputStream("excel文件"));
}
6. java中怎樣從Excel中讀寫數據
publicclassReadExcel001{
publicstaticvoidmain(String[]args){
readXml("D:/test.xlsx");
System.out.println("-------------");
readXml("d:/test2.xls");
}
publicstaticvoidreadXml(StringfileName){
booleanisE2007=false;//判斷是否是excel2007格式
if(fileName.endsWith("xlsx"))
isE2007=true;
try{
InputStreaminput=newFileInputStream(fileName);//建立輸入流
Workbookwb=null;
//根據文件格式(2003或者2007)來初始化
if(isE2007)
wb=newXSSFWorkbook(input);
else
wb=newHSSFWorkbook(input);
Sheetsheet=wb.getSheetAt(0);//獲得第一個表單
Iterator<Row>rows=sheet.rowIterator();//獲得第一個表單的迭代器
while(rows.hasNext()){
Rowrow=rows.next();//獲得行數據
System.out.println("Row#"+row.getRowNum());//獲得行號從0開始
Iterator<Cell>cells=row.cellIterator();//獲得第一行的迭代器
while(cells.hasNext()){
Cellcell=cells.next();
System.out.println("Cell#"+cell.getColumnIndex());
switch(cell.getCellType()){//根據cell中的類型來輸出數據
caseHSSFCell.CELL_TYPE_NUMERIC:
System.out.println(cell.getNumericCellValue());
break;
caseHSSFCell.CELL_TYPE_STRING:
System.out.println(cell.getStringCellValue());
break;
caseHSSFCell.CELL_TYPE_BOOLEAN:
System.out.println(cell.getBooleanCellValue());
break;
caseHSSFCell.CELL_TYPE_FORMULA:
System.out.println(cell.getCellFormula());
break;
default:
System.out.println("unsuportedselltype");
break;
}
}
}
}catch(IOExceptionex){
ex.printStackTrace();
}
}
}