We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Android导入运行到asList();后面代码直接return了,不运行了
The text was updated successfully, but these errors were encountered:
@Rianney 把你的代码发一下
Sorry, something went wrong.
File file = new File(path); List<ScoreEntity> entities = Reader.create(ScoreEntity.class) .from(file) .start(1) .asList(); public class ScoreEntity { @ExcelColumn(index = 0) private String className; @ExcelColumn(index = 1) private String studentNumber; @ExcelColumn(index = 2) private String studentName; @ExcelColumn(index = 3) private String courseName; @ExcelColumn(index = 4) private String scoreType; @ExcelColumn(index = 5) private String score; @ExcelColumn(index = 6) private String teacherName; @ExcelColumn(index = 7) private String termName;
File file = new File(path); List<ScoreEntity> entities = Reader.create(ScoreEntity.class) .from(file) .start(1) .asList();
public class ScoreEntity { @ExcelColumn(index = 0) private String className; @ExcelColumn(index = 1) private String studentNumber; @ExcelColumn(index = 2) private String studentName; @ExcelColumn(index = 3) private String courseName; @ExcelColumn(index = 4) private String scoreType; @ExcelColumn(index = 5) private String score; @ExcelColumn(index = 6) private String teacherName; @ExcelColumn(index = 7) private String termName;
Android的问题 java.lang.NoClassDefFoundError: Failed resolution of: Ljava/awt/font/FontRenderContext;
hellokaton
No branches or pull requests
Android导入运行到asList();后面代码直接return了,不运行了
The text was updated successfully, but these errors were encountered: