gpt4 book ai didi

java - 如何导入 import org.apache.poi.ss.usermodel.Row 报错?

转载 作者:搜寻专家 更新时间:2023-11-01 07:45:07 25 4
gpt4 key购买 nike

我正在尝试使用 Apache 将数据写入 Excel

我引用了这个链接:https://www.mkyong.com/java/apache-poi-reading-and-writing-excel-file-in-java/

单元格和行未导入

Cell and Row are not Importing

这是我的 java 类代码:

enter image description here

我下载Apache jar file here

我的java代码如下:

 try {
String FILE_NAME = "/tmp/MyFirstExcel.xlsx";
XSSFWorkbook workbook = new XSSFWorkbook();
XSSFSheet sheet = workbook.createSheet("Datatypes in Java");
Object[][] datatypes = {
{"Datatype", "Type", "Size(in bytes)"},
{"int", "Primitive", 2},
{"float", "Primitive", 4},
{"double", "Primitive", 8},
{"char", "Primitive", 1},
{"String", "Non-Primitive", "No fixesize"}
};
int rowNum = 0;
System.out.println("Creating excel");

for (Object[] datatype : datatypes) {
Row row = sheet.createRow(rowNum++);
int colNum = 0;
for (Object field : datatype) {
Cell cell = row.createCell(colNum++);
if (field instanceof String) {
cell.setCellValue((String) field);
} else if (field instanceof Integer) {
cell.setCellValue((Integer) field);
}
}
}
FileOutputStream outputStream = new FileOutputStream(FILE_NAME);
workbook.write(outputStream);
workbook.close();


} catch (IOException e) {
e.printStackTrace();
}
}

Build.gridle

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
androidTestCompile 'com.android.support:support-annotations:26.+'
compile 'com.android.support:appcompat-v7:26.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:design:26.+'
compile 'com.android.support:support-v4:26.+'
compile 'com.squareup.retrofit2:retrofit:2.0.2'
compile 'com.squareup.okhttp3:logging-interceptor:3.0.1'
compile 'com.android.support:cardview-v7:25.2.0'

testCompile 'junit:junit:4.12'
}

最佳答案

简单你需要添加jar文件

https://mvnrepository.com/artifact/org.apache.poi/poi/3.9

转到此链接下载jar 文件 将其添加到您的lib 文件夹中。

关于java - 如何导入 import org.apache.poi.ss.usermodel.Row 报错?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46294033/

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