在 Java 中创建 Excel 文件
我想创建一个Excel文件并写入数据,就像使用Java编写文本文件一样。我试图将文件扩展名从 更改为 。但我想在Excel文件中加粗字母。我该怎么做?.txt
.xls
我尝试过使用JXL API,但每次我必须创建标签时,我都不想添加标签。不能编辑表的行和列吗?
我想创建一个Excel文件并写入数据,就像使用Java编写文本文件一样。我试图将文件扩展名从 更改为 。但我想在Excel文件中加粗字母。我该怎么做?.txt
.xls
我尝试过使用JXL API,但每次我必须创建标签时,我都不想添加标签。不能编辑表的行和列吗?
//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);
}
}
}