1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > java excel 边框_【web开发】☆★之利用POI操作Excel表格系列教程【9】单元格边框处理...

java excel 边框_【web开发】☆★之利用POI操作Excel表格系列教程【9】单元格边框处理...

时间:2022-10-09 13:10:43

相关推荐

java excel 边框_【web开发】☆★之利用POI操作Excel表格系列教程【9】单元格边框处理...

【web开发】☆★之利用POI操作Excel表格系列教程【9】单元格边框处理

package csg.xiaoye.poidemo;

import java.io.FileOutputStream;

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

import org.apache.poi.ss.usermodel.Cell;

import org.apache.poi.ss.usermodel.CellStyle;

import org.apache.poi.ss.usermodel.IndexedColors;

import org.apache.poi.ss.usermodel.Row;

import org.apache.poi.ss.usermodel.Sheet;

import org.apache.poi.ss.usermodel.Workbook;

/**

* 处理单元格边框

* @author Administrator

*

*/

public class PoiFrame {

public static void main(String[] args) throws Exception{

Workbook wb=new HSSFWorkbook(); // 定义一个新的工作簿

Sheet sheet=wb.createSheet("第一个Sheet页"); // 创建第一个Sheet页

Row row=sheet.createRow(1); // 创建一个行

Cell cell=row.createCell(1); // 创建一个单元格

cell.setCellValue(4);

CellStyle cellStyle=wb.createCellStyle();

cellStyle.setBorderBottom(CellStyle.BORDER_THIN); // 底部边框

cellStyle.setBottomBorderColor(IndexedColors.BLACK.getIndex()); // 底部边框颜色

cellStyle.setBorderLeft(CellStyle.BORDER_THIN); // 左边边框

cellStyle.setLeftBorderColor(IndexedColors.RED.getIndex()); // 左边边框颜色

cellStyle.setBorderRight(CellStyle.BORDER_DASH_DOT_DOT); // 右边边框

cellStyle.setRightBorderColor(IndexedColors.BLUE.getIndex()); // 右边边框颜色

cellStyle.setBorderTop(CellStyle.BORDER_MEDIUM_DASHED); // 上边边框

cellStyle.setTopBorderColor(IndexedColors.ORANGE.getIndex()); // 上边边框颜色

cell.setCellStyle(cellStyle);

FileOutputStream fileOut=new FileOutputStream("d:\\小夜.xls");

wb.write(fileOut);

fileOut.close();

}

}

效果如下:

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。