zoukankan      html  css  js  c++  java
  • 单元格的格式设置 字体大小 颜色 对齐方式、背景颜色等

    设定单元格的格式设置 字体大小 颜色 对齐方式、背景颜色:

    private static void format() {
    try {
    arial14font = new WritableFont(WritableFont.ARIAL, 14, WritableFont.BOLD);
    arial14font.setColour(jxl.format.Colour.LIGHT_BLUE);
    arial14format = new WritableCellFormat(arial14font);
    arial14format.setWrap(true);
    arial14format.setAlignment(jxl.format.Alignment.CENTRE);
    arial14format.setBorder(jxl.format.Border.ALL, jxl.format.BorderLineStyle.THIN);
    arial14format.setBackground(jxl.format.Colour.VERY_LIGHT_YELLOW);

    arial10font = new WritableFont(WritableFont.ARIAL, 10, WritableFont.BOLD);
    arial10format = new WritableCellFormat(arial10font);
    arial10format.setAlignment(jxl.format.Alignment.CENTRE);
    arial10format.setBorder(jxl.format.Border.ALL, jxl.format.BorderLineStyle.THIN);
    arial10format.setWrap(true);

    arial12font = new WritableFont(WritableFont.ARIAL, 10);
    arial12format = new WritableCellFormat(arial12font);
    //对齐格式
    arial10format.setAlignment(jxl.format.Alignment.CENTRE);
    //设置边框
    arial12format.setBorder(jxl.format.Border.ALL, jxl.format.BorderLineStyle.THIN);

    arial12format.setWrap(true);
    } catch (WriteException e) {
    e.printStackTrace();
    }
    }
  • 相关阅读:
    linux下的shell 快捷键
    Python3.x和Python2.x的区别
    [Python2.x] 利用commands模块执行Linux shell命令
    redis缓存策略
    高并发解决方案
    java8 lambda表达式应用
    java读写分离的实现
    数据库读写分离
    大数据量处理方案:分布式数据库
    google的CacheBuilder缓存
  • 原文地址:https://www.cnblogs.com/lkwkk/p/14908834.html
Copyright © 2011-2022 走看看