用JAVA写一个读取Excel内容的代码
时间: 2023-06-01 07:07:20 浏览: 91
java读取excel
5星 · 资源好评率100%
好的,我可以为您提供一个JAVA读取Excel内容的代码示例,如下:
```java
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
public class ExcelReader {
public static void main(String[] args) {
try {
// 读取Excel文件
File file = new File("data.xlsx");
FileInputStream inputStream = new FileInputStream(file);
Workbook workbook = new XSSFWorkbook(inputStream);
// 读取第一个工作表
Sheet sheet = workbook.getSheetAt(0);
// 循环读取每一行数据
for (Row row : sheet) {
// 读取每一列数据
String column1 = row.getCell(0).getStringCellValue();
double column2 = row.getCell(1).getNumericCellValue();
String column3 = row.getCell(2).getStringCellValue();
// 输出每一行数据
System.out.println(column1 + "\t" + column2 + "\t" + column3);
}
// 关闭文件流
inputStream.close();
workbook.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
请注意,此示例仅限于读取Excel中的第一个工作表。如果有多个工作表,您需要根据需要进行修改。另外,请确保已经引入了Apache POI库依赖。
阅读全文