用java代码写一个表格导出
时间: 2023-03-28 13:00:15 浏览: 103
Java导出excel表格
4星 · 用户满意度95%
可以使用Apache POI库来实现表格导出,以下是一个简单的示例代码:
```
import java.io.FileOutputStream;
import java.io.IOException;
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
public class ExcelExporter {
public static void exportTable(String[][] tableData, String filePath) throws IOException {
Workbook workbook = new XSSFWorkbook();
Sheet sheet = workbook.createSheet("Table Data");
for (int i = ; i < tableData.length; i++) {
Row row = sheet.createRow(i);
for (int j = ; j < tableData[i].length; j++) {
Cell cell = row.createCell(j);
cell.setCellValue(tableData[i][j]);
}
}
FileOutputStream outputStream = new FileOutputStream(filePath);
workbook.write(outputStream);
workbook.close();
outputStream.close();
}
}
```
其中,tableData是一个二维字符串数组,表示要导出的表格数据;filePath是导出的文件路径。该方法会将表格数据写入一个.xlsx文件中。
阅读全文