本文整理匯總了Java中org.apache.poi.ss.usermodel.Workbook.getSheet方法的典型用法代碼示例。如果您正苦於以下問題:Java Workbook.getSheet方法的具體用法?Java Workbook.getSheet怎麽用?Java Workbook.getSheet使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.poi.ss.usermodel.Workbook
的用法示例。
在下文中一共展示了Workbook.getSheet方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: readExcel
import org.apache.poi.ss.usermodel.Workbook; //導入方法依賴的package包/類
/**
* Read the excel to get the Map of properties for supported locals
*
* @param wb
* workbook which is the source
* @param supportedLocales
* supported Locale Iterator
* @param sheetName
* @param defaultKeySet
* if this parameter is not null: if there is invalid key not
* in this set, TranslationImportException.KEY_NOT_FOUND will
* throw.
* @return
* @throws ValidationException
* @throws TranslationImportException
*/
public static Map<String, Properties> readExcel(Workbook wb,
Iterator<Locale> supportedLocales, String sheetName,
Set<Object> defaultKeySet) throws ValidationException,
TranslationImportException {
Sheet sheet = null;
try {
sheet = wb
.getSheet(getDefaultResourceBundle().getString(sheetName));
if (sheet == null) {
throw new TranslationImportException();
}
} catch (Exception e) {
throw new TranslationImportException(
TranslationImportException.Reason.SHEET_NAME_NOT_FOUND);
}
return readSheet(sheet, supportedLocales, sheetName, defaultKeySet);
}
示例2: downLoad
import org.apache.poi.ss.usermodel.Workbook; //導入方法依賴的package包/類
/**
* excel 下載
*/
@RequestMapping(value = "downLoad")
public void downLoad(HttpServletRequest request, HttpServletResponse response) throws Exception {
Workbook wb = null;
try {
logger.info(">>>>>>>>ReportViewController.downLoad start>>");
//=======================================數據
List<Map<String,Object>> datas = Lists.newArrayList();
Map<String,Object> data0 = Maps.newHashMap();
data0.put("date", "2017-01-01");
data0.put("date1", "2017-01-01");
Map<String,Object> data1 = Maps.newHashMap();
data1.put("shoujidai","100");
data1.put("daxuedai","100");
data1.put("zirandai","100");
data0.put("zidonghebishu",data1);
datas.add(data0);
//==========================================
//設置excel模板
Map<String, Object> templateParams = Maps.newHashMap();
XLSTransformer transformer = new XLSTransformer();
wb = transformer.transformXLS(App.class.getResourceAsStream("/xls/excel.xlsx"), templateParams);
Sheet billInfoSheet = wb.getSheet("sheet1");
//設置excel展示配置
ExcelExportSetting excelExportSetting = new ExcelExportSetting();
List<PoiCell> cellList = Lists.newArrayList();
//一行數據的第一列
cellList.add(new ExcelMergeCell("日期","date"));
cellList.add(new ExcelMergeCell("日期1","date1"));
//一行數據的第二個列合並單元格的
ExcelMergeCell excelMergeCell = new ExcelMergeCell("自動電核筆數","zidonghebishu",
Arrays.asList(new ExcelCell("大學貸","daxuedai"),
new ExcelCell("手機貸","shoujidai"),
new ExcelCell("自然貸","zirandai")));
cellList.add(excelMergeCell);
excelExportSetting.setHeaderRow(cellList);//設置表頭
excelExportSetting.setDataList(datas);//設置數據
//寫入excel
ExcelPoiHelp.poiWrite(wb, billInfoSheet, excelExportSetting);
//寫入response
String outFile = "outputFile.xls";
response.reset();
response.addHeader("Content-Disposition", "attachment;filename="+ new String(outFile.getBytes()));
OutputStream toClient = new BufferedOutputStream(response.getOutputStream());
response.setContentType("application/vnd.ms-excel;charset=utf-8");
wb.write(toClient);
} catch (Exception e) {
e.printStackTrace();
} finally {
wb.close();
}
}
示例3: selectSheet
import org.apache.poi.ss.usermodel.Workbook; //導入方法依賴的package包/類
private Sheet selectSheet(Workbook workbook) {
if(sheetIndex != null) {
return workbook.getSheetAt(sheetIndex);
}
return workbook.getSheet(sheetName);
}