本文整理匯總了Java中org.apache.poi.ss.usermodel.Row.setHeight方法的典型用法代碼示例。如果您正苦於以下問題:Java Row.setHeight方法的具體用法?Java Row.setHeight怎麽用?Java Row.setHeight使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.poi.ss.usermodel.Row
的用法示例。
在下文中一共展示了Row.setHeight方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: writeTitle
import org.apache.poi.ss.usermodel.Row; //導入方法依賴的package包/類
/**
* 向當前Sheet第一行(1-based)寫入標題,若用戶沒有開啟寫入標題總開關(即{@link #isWriteTitle}為false),
* 或者{@link #titles}為空則不會做任何操作
*/
private void writeTitle() {
if (!this.isWriteTitle || this.titles == null || this.titles.isEmpty()) {
return;
}
this.currentRowInSheet++;
Row row = this.currentSheetPO.createRow(this.currentRowInSheet);
row.setHeight(this.rowHeight < 0 ? -1 : this.rowHeight);
for (int i = 0; i < this.titles.size(); i++) {
Cell cell = row.createCell(i);
cell.setCellStyle(this.defaultTitleCellStyle);
cell.setCellValue(this.titles.get(i));
}
this.realRowInSheet++;
this.realRowInExcel++;
}
示例2: copyRowByBlankSpace
import org.apache.poi.ss.usermodel.Row; //導入方法依賴的package包/類
/**
* 行複製功能(空白行的複製,即隻複製格式和固定文字,不填充數據)
*
* @author ZhengWei(HY)
* @createDate 2017-07-03
* @version v1.0
*
* @param i_RTemplate 模板
* @param i_TemplateRow 模板中的行對象
* @param i_DataWorkbook 數據工作薄
* @param io_RTotal 將數據寫入Excel時的輔助統計信息。
* @param io_RSystemValue 係統變量信息
* @param i_DataRow 數據中的行對象
* @param i_Datas 本行對應的數據
*
* @return 返回本方法內一共生成多少新行。
*/
public final static int copyRowByBlankSpace(RTemplate i_RTemplate ,Row i_TemplateRow ,RWorkbook i_DataWorkbook ,RTotal io_RTotal ,RSystemValue io_RSystemValue ,Row i_DataRow)
{
i_DataRow.setHeight( i_TemplateRow.getHeight());
i_DataRow.setZeroHeight(i_TemplateRow.getZeroHeight());
int v_CellCount = i_TemplateRow.getLastCellNum();
for (int v_CellIndex=0; v_CellIndex<v_CellCount; v_CellIndex++)
{
Cell v_TemplateCell = i_TemplateRow.getCell(v_CellIndex);
if ( v_TemplateCell == null )
{
continue;
}
Cell v_DataCell = i_DataRow.getCell(v_CellIndex);
if ( v_DataCell == null )
{
v_DataCell = i_DataRow.createCell(v_CellIndex);
}
copyCellByBlankSpace(i_RTemplate ,v_TemplateCell ,i_DataWorkbook ,v_DataCell ,io_RSystemValue);
}
return 0;
}
示例3: writeInTitle
import org.apache.poi.ss.usermodel.Row; //導入方法依賴的package包/類
/**
* 寫入標題欄
*
* @param sheet
* @param style
* @throws Exception
*/
private void writeInTitle(HSSFSheet sheet, HSSFCellStyle style, List<String> titles) throws Exception {
Cell cell = null;
Row row = sheet.createRow(0);
try {
for (int i = 0; i < titles.size(); i++) {
row.setHeight((short) 300);
cell = row.createCell(i);
cell.setCellStyle(style);
cell.setCellValue(titles.get(i));
}
} catch (Exception e) {
throw new Exception("Write title data error");
}
}
示例4: writePerData
import org.apache.poi.ss.usermodel.Row; //導入方法依賴的package包/類
/**
* 寫入指定數據
*
* @param data 指定被寫入的數據
*/
private void writePerData(T data) {
if (this.limit > 0 && (this.currentRowInSheet + (isSkipBlankRow && isBlankLastRow ? 0 : 1)) >= this.limit) {
//用戶開啟了限製,並且此Sheet已經寫入了允許的最大行數則換頁
this.initSheet();
} else if (this.limit <= 0 &&
(this.currentRowInSheet + (isSkipBlankRow && isBlankLastRow ? 0 : 1)) >= ROW_MOST) {
//若用戶沒有開啟限製,但是此頁寫入已經超過了Excel規定的最大行數,強製換頁
this.initSheet();
}
//將data轉換成Map數據結構
Map<String, Object> mapBean = null;
if (data instanceof Map) {
mapBean = (Map<String, Object>) data;
} else {
mapBean = CommonUtils.toMap(data);
}
if (mapBean == null) {
throw new WriteExcelRuntimeException("Bean轉換為Map時發生錯誤");
}
if (this.properties == null || this.properties.isEmpty()) {
throw new WriteExcelRuntimeException("properties屬性不能為空");
}
if (!this.isSkipBlankRow) {
//未開啟跳過空行設置,即需要寫入空行
this.currentRowInSheet++;
Row row = this.currentSheetPO.createRow(this.currentRowInSheet);
row.setHeight(this.rowHeight < 0 ? -1 : this.rowHeight);
if (this.writePerRow(row, mapBean)) {
this.realRowInSheet++;
this.realRowInExcel++;
}
} else {
//開啟跳過空行設置,即不寫入空行
if (!this.isBlankLastRow) {
//若上一行不是空行則指針下移一行
this.currentRowInSheet++;
//創建一個新的Row
Row thisRow = this.currentSheetPO.createRow(this.currentRowInSheet);
thisRow.setHeight(this.rowHeight < 0 ? -1 : this.rowHeight);
//開始將數據寫入該行
if (this.writePerRow(thisRow, mapBean)) {
//若寫入了數據
this.realRowInSheet++;
this.realRowInExcel++;
//此行不是空行
this.isBlankLastRow = false;
} else {
//若沒有寫入任何數據,此行標記為空行
this.isBlankLastRow = true;
}
this.lastRow = thisRow;
} else {
//若上一行為空行則直接在上一行寫入數據
if (this.writePerRow(this.lastRow, mapBean)) {
//若寫入了數據
this.realRowInSheet++;
this.realRowInExcel++;
this.isBlankLastRow = false;
} else {
//若沒有寫入任何數據,此行還是標記為空行
this.isBlankLastRow = true;
}
}
}
}