ホームページ  >  記事  >  Java  >  SpringMVCを使用してExcelファイルを生成するにはどうすればよいですか?

SpringMVCを使用してExcelファイルを生成するにはどうすればよいですか?

不言
不言転載
2018-10-20 16:55:332626ブラウズ

この記事では、SpringMVC を使用して Excel ファイルを生成する方法について説明します。困っている友人は参考にしていただければ幸いです。

Excel ファイルを生成したり、Java 経由で Excel ファイルのデータをインポートするには、Apache の POI パッケージを使用する必要があります。ここでは、最初にこのパッケージを提供します。

<dependency>
    <groupId>org.apache.poi</groupId>
    <artifactId>poi-ooxml</artifactId>
    <version>3.9</version>
</dependency>

ここでは SpringBoot を使用してプロジェクトを作成しています。作成プロセスの詳細については説明しません。
正式に開始しました。このデモの作成
1. ExcelUtil クラスを作成します。このクラスは 2 つの主要なメソッドで Excel を操作します。

1-1.exportFile(): データを Excel ファイルにエクスポートします。
1-2.importFile(): 指定されたファイルからデータをインポートします。

users テーブルの構造は次のとおりです:

 id | username  | password  |
+----+-----------+-----------+
|  1 | yx12156ok | yx27787ok |
|  2 | yangxiang | 123456    |
|  3 | zhangsan  | 666666    |
|  4 | wangwu    | 999999    |
|  5 | xiaoming  | xiaoming
ここでは、まず ExcelUtil クラスのインポートの実装を投稿し、それから以下で詳しく説明します:
public class ExcelUtil {
    
    private final String excel2003 = "xls";
    private final String excel2007 = "xlsx";
    
    private Workbook workbook;
    private Sheet sheet;
    private Row row;
    private Cell cell;
    private CellStyle style;
    
    private File file;
    
    //初始化表结构和生成表头
    public ExcelUtil(String[] titles,File file) {
        this.file = file;
        String fileName = this.file.getName();
        this.workbook = getWorkbook(fileName);
        if(workbook == null) return;
        this.sheet = this.workbook.createSheet();
        this.row = this.sheet.createRow(0);
        this.style = this.workbook.createCellStyle();
        this.style.setAlignment(CellStyle.ALIGN_CENTER);
        for(int i = 0 ; i < titles.length ; i ++) {
            cell = row.createCell(i);    //创建列
            cell.setCellValue(titles[i]);    //赋值
            cell.setCellStyle(style);    //样式
        }
    }
    
    public void genertedExportUsersFile(List<Users> data) throws IOException {    
        //遍历每一行数据
        for(int i = 0; i < data.size() ; i ++) {
            int j = 0;
            Users user = data.get(i);
            row = sheet.createRow(i+1);
            row.setRowStyle(style);
            row.createCell(j++).setCellValue(Optional.of(user.getId()).orElse(null));
            row.createCell(j++).setCellValue(Optional.of(user.getUsername()).orElse(null));
            row.createCell(j++).setCellValue(Optional.of(user.getPassword()).orElse(null));
        }
    }
    
    public void genertedExportStudentFile(List<Student> data) {
        //遍历每一行数据 
        for(int i = 0,j = 0 ; i < data.size() ; i ++) {
            Student student = data.get(i);
            row = sheet.createRow(i+1);
            row.setRowStyle(style);
            row.createCell(j++).setCellValue(Optional.of(student.getId()).orElse(null));
            row.createCell(j++).setCellValue(Optional.of(student.getUsername()).orElse(null));
            row.createCell(j++).setCellValue(Optional.of(student.getPassword()).orElse(null));
            row.createCell(j++).setCellValue(Optional.of(student.getStuname()).orElse(null));
            row.createCell(j++).setCellValue(Optional.of(student.getStusex()).orElse(null));
}
}
    
public void write() throws IOException {
    //把数据写入表格文件
    OutputStream out = new FileOutputStream(this.file);
    this.workbook.write(out);
    out.close();
}
private Workbook getWorkbook(String fileName) {
        //根据文件后缀名来获取Excel文件是2003版的还是2007版的
        String type = checkFileType(fileName);
        //根据版本的不同实例不同的对象
        if(type.equals(this.excel2003))
            return new HSSFWorkbook();
        else if(type.equals(this.excel2007))
            return new XSSFWorkbook();
        return null;
    }

private String checkFileType(String fileName) {
    return fileName.substring(fileName.lastIndexOf(".")+1);
}
}
次に関数について説明します。

Constructor メソッド: テーブル構造オブジェクトを初期化し、テーブル ヘッダーを生成します。

genertedExportUsersFile メソッド: テーブル データを生成します。この時点ではデータは実際には書き込まれません。 File クラスで生成されたテーブル。
getWorkbook メソッド: 2003 バージョンまたは 2007 バージョンの Excel オブジェクトを取得します。
checkFileType メソッド: ファイルのサフィックス名を取得します。


以上がSpringMVCを使用してExcelファイルを生成するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

声明:
この記事はsegmentfault.comで複製されています。侵害がある場合は、admin@php.cn までご連絡ください。