gpt4 book ai didi

在网格中显示xlsx文件内容的j​​ava代码

转载 作者:行者123 更新时间:2023-12-01 11:10:48 25 4
gpt4 key购买 nike

我需要将 xlsx 文件上传到本地文件夹,并且需要以网格格式显示该 xlsx 文件,因此我已将文件上传到本地文件夹,但我需要以网格格式显示 xlsx 文件的代码。

我的代码是:

ist<FileItem> multiparts = upload.parseRequest(request);

for (FileItem item : multiparts) {
if (!item.isFormField()) {
String name = new File(item.getName()).getName();
System.out.println("name::::"+name);
item.write(new File(UPLOAD_DIRECTORY + File.separator + name));
}
}

最佳答案

下面有一个类要写入.xlsx文件中。请注意,要运行此文件,您需要下载 Apache poi lib并添加项目中的所有 .jar 文件在代码中,我正在编写一个包含 A 到 Z 字符及其 ASCII 值的 .xlsx 文件。我还将注释写在代码中,以便于理解代码,如果仍有疑问,请评论。

    package com;
import java.io.File;
import java.io.FileOutputStream;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
public class WriteSheet
{
public static void main(String[] args) throws Exception
{
//Creating a blank workbook
XSSFWorkbook workbook = new XSSFWorkbook();
//Creating a blank sheet
XSSFSheet spreadsheet = workbook.createSheet(
"ASCII Values from A to Z");
int j=0;
int ascii=65;
for(int i=0; i<26; i++)
{
//Creating row object
XSSFRow row= spreadsheet.createRow(i);
//Creating a cell
Cell cell = row.createCell(j);
j++;
//Adding values to cell
cell.setCellValue(""+ascii);
//Creating a new cell in same row
cell = row.createCell(j);
//Adding values to new cell
cell.setCellValue(""+(char)ascii);
ascii++;
j=0;
}
FileOutputStream out = new FileOutputStream(
new File("C:\\Users\\TANAY\\Desktop\\Writesheet.xlsx"));
workbook.write(out);
out.close();
System.out.println(
"Writesheet.xlsx written successfully" );
workbook.close();
}
}

关于在网格中显示xlsx文件内容的j​​ava代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32409839/

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