如何将二维数组写入Excel?
我有一个二维数组,想通过java代码写入一个excel文件单元格区域中,并支持导出xlsx文件。
应该如何实现?
回答:
你可以使用java Excel 相关的第三方组件实现
引入Maven依赖:
<dependency> <groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.17</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.17</version>
</dependency>
Java将数据写入Excel,把这个方法封装了WriteToExcel
import org.apache.poi.xssf.usermodel.XSSFCell;import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
public class WriteToExcel {
private static XSSFWorkbook workbook;
private static XSSFSheet sheet;
private static XSSFRow row;
private static XSSFCell cell;
private static File file;
//创建sheet页
public static void setSheet(String sheetName) {
workbook = new XSSFWorkbook();
sheet = workbook.createSheet(sheetName);
}
//创建表头
public static void createHead(List<String> headList) {
//创建表头,也就是第一行
row = sheet.createRow(0);
for (int i = 0; i < headList.size(); i++) {
cell = row.createCell(i);
cell.setCellValue(headList.get(i));
}
}
//创建表内容
public static void createContent(List<List<String>> contentList) {
//创建表内容,从第二行开始
for (int i = 0; i < contentList.size(); i++) {
row = sheet.createRow(i + 1);
for (int j = 0; j < contentList.get(i).size(); j++) {
row.createCell(j).setCellValue(contentList.get(i).get(j));
}
}
}
//写入文件
public static void writeToFile(String filePath){
file = new File(filePath);
//将文件保存到指定的位置
try {
workbook.write(new FileOutputStream(file));
System.out.println("写入成功");
workbook.close();
} catch (IOException e) {
e.printStackTrace();
}
}
// 内容测试数据
protected static List<List<String>> getContent() {
List<List<String>> contentList = new ArrayList<>();
List<String> content1 = new ArrayList<>();
content1.add("张三");
content1.add("18");
List<String> content2 = new ArrayList<>();
content2.add("李四");
content2.add("20");
contentList.add(content1);
contentList.add(content2);
return contentList;
}
public static void main(String[] args) {
//表头测试数据
List<String> headList = new ArrayList<>();
headList.add("昵称");
headList.add("年龄");
List<List<String>> contentList = getContent();//内容测试数据
setSheet("WorkSheet"); //创建sheet页
createHead(headList); //设置表头
createContent(contentList); //设置内容
writeToFile("D://work.xls"); //写入文件
}
}
回答:
看看github copilot 怎么说的
首先,你需要添加Apache POI库到你的项目中。如果你使用Maven,你可以在pom.xml文件中添加以下依赖:
<dependency> <groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>5.0.0</version>
</dependency>
然后,你可以使用以下代码将二维数组写入Excel文件:
import org.apache.poi.ss.usermodel.*;import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import java.io.FileOutputStream;
import java.io.IOException;
public class ExcelWriter {
public void writeToExcel(String[][] data, String filePath) {
Workbook workbook = new XSSFWorkbook();
Sheet sheet = workbook.createSheet("Sheet1");
for (int i = 0; i < data.length; i++) {
Row row = sheet.createRow(i);
for (int j = 0; j < data[i].length; j++) {
Cell cell = row.createCell(j);
cell.setCellValue(data[i][j]);
}
}
try (FileOutputStream outputStream = new FileOutputStream(filePath)) {
workbook.write(outputStream);
} catch (IOException e) {
e.printStackTrace();
}
}
}
在这段代码中,我们首先创建了一个新的XSSFWorkbook对象,然后在工作簿中创建了一个新的工作表。然后,我们遍历二维数组,为每个数据元素创建一个新的单元格,并将数据写入单元格。最后,我们将工作簿写入文件。
你可以通过以下方式调用这个方法:
String[][] data = { {"A1", "B1", "C1"},
{"A2", "B2", "C2"},
{"A3", "B3", "C3"}
};
new ExcelWriter().writeToExcel(data, "path_to_your_file.xlsx");
请将"path_to_your_file.xlsx"
替换为你想要保存的文件路径。
回答:
GcExcel的 SetValue可以直接把二维数组设置到一片区域上。通过这种方式,可以轻松搞定写入二维数组的需求。
给区域设置值 - GcExcel 中文文档Java版 | 服务端高性能表格组件 - 葡萄城
worksheet.getRange("A:F").setColumnWidth(15);Object data = new Object[][] { { "Name", "City", "Birthday", "Eye color", "Weight", "Height" },
{ "Richard", "New York", new GregorianCalendar(1968, 5, 8), "Blue", 67, 165 },
{ "Nia", "New York", new GregorianCalendar(1972, 6, 3), "Brown", 62, 134 },
{ "Jared", "New York", new GregorianCalendar(1964, 2, 2), "Hazel", 72, 180 },
{ "Natalie", "Washington", new GregorianCalendar(1972, 7, 8), "Blue", 66, 163 },
{ "Damon", "Washington", new GregorianCalendar(1986, 1, 2), "Hazel", 76, 176 },
{ "Angela", "Washington", new GregorianCalendar(1993, 1, 15), "Brown", 68, 145 } };
// set two-dimension array value to range A1:F7
worksheet.getRange("A1:F7").setValue(data);
// return a two-dimension array when get range A1:B7's value.
Object result = worksheet.getRange("A1:B7").getValue();
以上是 如何将二维数组写入Excel? 的全部内容, 来源链接: utcz.com/p/945443.html