码迷,mamicode.com
首页 > 其他好文 > 详细

(六)操作Excel的poi的字体设置

时间:2020-05-23 11:37:19      阅读:46      评论:0      收藏:0      [点我收藏+]

标签:imp   exception   create   mode   font   tail   csdn   code   author   

原文链接:https://blog.csdn.net/class157/article/details/92817286

package com.java.poi;
 
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.*;
 
import java.io.FileOutputStream;
 
/**
 * @program: IdeaProjects
 * @description:
 * @author: Lxy
 * @create: 2019-06-19 09:45
 **/
public class Test7 {
    public static void main(String[] args) throws Exception {
 
        Workbook wb=new HSSFWorkbook();
        Sheet sheet = wb.createSheet("sheet页");
        Row row=sheet.createRow(1);
 
        //创建一个字体
        Font font=wb.createFont();
        font.setFontHeightInPoints((short) 24);
        font.setFontName("Courier New ");
        font.setItalic(true);
        font.setStrikeout(true);
 
        CellStyle style=wb.createCellStyle();
        style.setFont(font);
 
        Cell cell = row.createCell((short) 1);
        cell.setCellValue("this is test of fonts");
        cell.setCellStyle(style);
 
        FileOutputStream is=new FileOutputStream("D:\\3.xls");
        wb.write(is);
        is.close();
    }
}

技术图片

 

(六)操作Excel的poi的字体设置

标签:imp   exception   create   mode   font   tail   csdn   code   author   

原文地址:https://www.cnblogs.com/lvchengda/p/12941401.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!