Apache POI Excel 字体

Apache POI 提供了处理 Excel 表格中字体的方法。我们可以创建字体、设置颜色、设置大小等。Font 是一个接口,它提供了处理字体的方法。

让我们看一个示例,其中我们为单元格内容创建和设置新字体。

Apache POI Excel 单元格字体示例

package com.yiidian;

import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.*;

import java.io.FileOutputStream;
import java.io.OutputStream;

public class FontExample {
    public static void main(String[] args) {  
        try (OutputStream fileOut = new FileOutputStream("yiidian.xls")) {
            Workbook wb = new HSSFWorkbook(); // Creating a workbook
            Sheet sheet = wb.createSheet("Sheet"); // Creating a sheet
            Row row = sheet.createRow(1); // Creating a row
            Cell cell = row.createCell(1); // Creating a cell
            CellStyle style = wb.createCellStyle(); // Creating Style
            cell.setCellValue("你好, 一点教程网!");
            // Creating Font and settings  
            Font font = wb.createFont();  
            font.setFontHeightInPoints((short)11);  
            font.setFontName("Courier New");  
            font.setItalic(true);  
            font.setStrikeout(true);  
            // Applying font to the style  
            style.setFont(font);  
            // Applying style to the cell  
            cell.setCellStyle(style);      
            wb.write(fileOut);  
        }catch(Exception e) {  
            System.out.println(e.getMessage());  
        }  
    }  
}  

输出结果为:

热门文章

优秀文章