gpt4 book ai didi

java - 用Java创建Excel文件

转载 作者:IT老高 更新时间:2023-10-28 20:43:14 25 4
gpt4 key购买 nike

我想创建一个 Excel 文件并写入数据,就像用 Java 编写一个文本文件一样。我试图将文件扩展名从 .txt 更改为 .xls。但我想在 Excel 文件中加粗字母。我该怎么做?

我尝试过使用 JXL API,但每次我必须创建标签时,我都不想添加标签。 O不能编辑表格的行列?

最佳答案

//Find jar from here "http://poi.apache.org/download.html"
import java.io.*;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.hssf.usermodel.HSSFRow;

public class CreateExlFile{
public static void main(String[]args) {
try {
String filename = "C:/NewExcelFile.xls" ;
HSSFWorkbook workbook = new HSSFWorkbook();
HSSFSheet sheet = workbook.createSheet("FirstSheet");

HSSFRow rowhead = sheet.createRow((short)0);
rowhead.createCell(0).setCellValue("No.");
rowhead.createCell(1).setCellValue("Name");
rowhead.createCell(2).setCellValue("Address");
rowhead.createCell(3).setCellValue("Email");

HSSFRow row = sheet.createRow((short)1);
row.createCell(0).setCellValue("1");
row.createCell(1).setCellValue("Sankumarsingh");
row.createCell(2).setCellValue("India");
row.createCell(3).setCellValue("sankumarsingh@gmail.com");

FileOutputStream fileOut = new FileOutputStream(filename);
workbook.write(fileOut);
fileOut.close();
workbook.close();
System.out.println("Your excel file has been generated!");

} catch ( Exception ex ) {
System.out.println(ex);
}
}
}

关于java - 用Java创建Excel文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1176080/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com