Java读取Excel单元格neieo
时间: 2023-12-04 14:02:54 浏览: 128
你可以使用 Apache POI 库来读取 Excel 单元格。下面是一个使用 Java 代码读取 Excel 单元格内容的示例:
```java
import org.apache.poi.ss.usermodel.*;
import java.io.FileInputStream;
import java.io.IOException;
public class ExcelReader {
public static void main(String[] args) {
try {
FileInputStream file = new FileInputStream("path/to/your/excel/file.xlsx");
Workbook workbook = WorkbookFactory.create(file);
Sheet sheet = workbook.getSheetAt(0); // 选择第一个工作表
Row row = sheet.getRow(0); // 选择第一行
Cell cell = row.getCell(0); // 选择第一个单元格
String cellValue = cell.getStringCellValue(); // 获取单元格的文本值
System.out.println("Cell value: " + cellValue);
workbook.close();
file.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
在上面的示例中,你需要将 "path/to/your/excel/file.xlsx" 替换为你实际的 Excel 文件路径。这段代码会打印出第一个单元格的文本值。
请确保你已经将 Apache POI 库添加到你的项目中。你可以从官方网站(https://poi.apache.org/)下载并引入相应的 JAR 文件。希望能帮到你!如果还有其他问题,请随时提问。
阅读全文