使用Java將Excel 列號數字與字母互相轉換

2021-09-23 14:15:21 字數 709 閱讀 6236

public class excelcolumn 

/*** 該方法用來將excel中的abcd列轉換成具體的資料

* @param column:abcd列名稱

* @return integer:將字母列名稱轉換成數字

* **/

public static int excelcolstrtonum(string column)

return result;

}/**

* 該方法用來將具體的資料轉換成excel中的abcd列

* @param int:需要轉換成字母的數字

* @return column:abcd列名稱

* **/

public static string excelcolindextostr(int columnindex)

string columnstr = "";

columnindex--;

do columnstr = ((char) (columnindex % 26 + (int) 'a')) + columnstr;

columnindex = (int) ((columnindex - columnindex % 26) / 26);

} while (columnindex > 0);

return columnstr;

}}

使用OleDb,將Excel匯入DataSet

本方法,將傳入的excel檔案內所有的sheet內的資料都填充入dataset中。這是乙個簡單快捷的方法,不足之處是不適合帶有格式複雜的excel檔案。比如 有合併單元格的 public class excelutil extended properties excel 8.0 if firstro...

使用OleDb,將Excel匯入DataSet

本方法,將傳入的excel檔案內所有的sheet內的資料都填充入dataset中。這是乙個簡單快捷的方法,不足之處是不適合帶有格式複雜的excel檔案。using system.data using system.data.oledb using system.data.odbc public da...

java使用opi匯出excel

1.匯入jar包 org.apache.poi poi3.14 org.apache.poi poi ooxml 3.14 2.工具類 package com.hr.basic.utils import org.apache.poi.hssf.usermodel.hssfcell import or...