excel导入程序JAVA
时间: 2024-05-10 16:15:24 浏览: 70
您可以使用 Apache POI 库来读取和写入 Excel 文件。以下是一个简单的示例程序,该程序演示了如何读取 Excel 文件并输出其内容:
```java
import java.io.FileInputStream;
import java.io.IOException;
import org.apache.poi.ss.usermodel.Cell;
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) throws IOException {
FileInputStream inputStream = new FileInputStream("example.xlsx");
Workbook workbook = new XSSFWorkbook(inputStream);
Sheet sheet = workbook.getSheetAt(0);
for (Row row : sheet) {
for (Cell cell : row) {
switch (cell.getCellType()) {
case STRING:
System.out.print(cell.getStringCellValue());
break;
case NUMERIC:
System.out.print(cell.getNumericCellValue());
break;
case BOOLEAN:
System.out.print(cell.getBooleanCellValue());
break;
default:
System.out.print(" ");
}
System.out.print("\t");
}
System.out.println();
}
workbook.close();
inputStream.close();
}
}
```
此程序假设您有一个名为“example.xlsx”的 Excel 文件,并且该文件的第一个工作表包含要读取的数据。您可以根据需要进行更改以适应自己的需求。
阅读全文