Вот пример того, что вы могли бы сделать.
Сначала я создал класс Вопросов:
class Question {
String question;
String answer;
Question(String question, String answer) {
this.question = question;
this.answer = answer;
}
}
И класс викторины:
public class Quiz {
String quizName;
List<Question> questions;
void addQuestion(Question question) {
if (null == questions) {
questions = new ArrayList<>();
}
questions.add(question);
}
}
Тогда вот собственно приложение, в котором я использую Apache POI:
public class MailExcel {
public static void main(String[] args) {
//Creating the quiz
Quiz mQuiz = new Quiz();
mQuiz.quizName = "Excel-quiz";
Question question1 = new Question("Where do you find the best answers?", "Stack-Overflow");
Question question2 = new Question("Who to ask?", "mwb");
mQuiz.addQuestion(question1);
mQuiz.addQuestion(question2);
//Creating the workbook
Workbook workbook = new XSSFWorkbook();
CreationHelper creationHelper = workbook.getCreationHelper();
Sheet sheet = workbook.createSheet("Quiz");
Row row1 = sheet.createRow(0);
Row row2 = sheet.createRow(1);
row1.createCell(0).setCellValue("Quiz");
row2.createCell(0).setCellValue(mQuiz.quizName);
int col = 1;
for (Question question: mQuiz.questions) {
row1.createCell(col).setCellValue("Question " + col);
row2.createCell(col).setCellValue(question.question);
col++;
}
//Creating and saving the file
FileOutputStream file = null;
try {
file = new FileOutputStream("quiz.xlsx");
workbook.write(file);
file.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
}
Что важно, так это то, что вы включаете jar-файлы для org.apache.poi. Или, как я сделал, добавьте зависимости в pom-файл Maven (или в файл Gradle, например, если вы разрабатываете для Android). Вот мой pom-файл:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>mail-excel</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.17</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.17</version>
</dependency>
</dependencies>
</project>
Надеюсь, это работает для вас (для меня)!
Я загрузил свое решение на GitHub: https://github.com/mwbouwkamp/create-excel
В случае разработки Android добавьте следующую зависимость:
implementation "org.apache.poi:poi:3.17"
implementation "org.apache.poi:poi-ooxml:3.17"