fastexcel icon indicating copy to clipboard operation
fastexcel copied to clipboard

[Feature Request] Auto POJO mapping support

Open aboutZZ opened this issue 1 year ago • 2 comments

Is this library support auto POJO mapping? e.g. I want read rows like this

Sheet sheet = wb.getFirstSheet();
List<Pojo> list = sheet.read(Pojo.class);

class Pojo {
    @ColumnIndex(0)
    private String name;

    @ColumnIndex(1)
    private Integer age;

    // getters and setters...
}

aboutZZ avatar Jan 20 '23 06:01 aboutZZ

Good idea, maybe I'll try this.

meiMingle avatar Jan 21 '23 03:01 meiMingle

I would like to try this

OutOfCoffeeError avatar Mar 22 '23 10:03 OutOfCoffeeError