当前位置: 首页>>代码示例>>Java>>正文


Java Row.setHeight方法代码示例

本文整理汇总了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++;
}
 
开发者ID:FlyingHe,项目名称:UtilsMaven,代码行数:20,代码来源:XLSXWriter.java

示例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;
}
 
开发者ID:HY-ZhengWei,项目名称:hy.common.report,代码行数:44,代码来源:JavaToExcel.java

示例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");
    }
}
 
开发者ID:DomKing,项目名称:springbootWeb,代码行数:22,代码来源:ExcelUtil.java

示例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;
            }
        }

    }
}
 
开发者ID:FlyingHe,项目名称:UtilsMaven,代码行数:72,代码来源:XLSXWriter.java


注:本文中的org.apache.poi.ss.usermodel.Row.setHeight方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。