I am currently trying to create a small quiz application in which the object class will contain:
- question
- answerChoice1
- answerChoice2
- answerChoice3
- correctAnswerNum
To contain the this data I have a txt. file that contains the relevant data. That file is also in the same formatting as the list above.
What I would like to do is read the file and import the data from each line and convert for my program to use.
This differs from other questions of this nature as I am looking to convert the question (of which there will be spaces in the string) while also importing other object data for the same object set in the array on separate lines.
questions (String question, String answer1, String answer2, String answer3, int correctAnswer){
this.question = question;
this.answer1 = answer1;
this.answer2 = answer2;
this.answer3 = answer3;
this.correctAnswer = correctAnswer;
}
public String getQuestion(){
return question;
}
public String getAnswer1(){
return answer1;
}
public String getAnswer2(){
return answer2;
}
public String getAnswer3(){
return answer3;
}
public int getCorrectAnswer(){
return correctAnswer;
}
Here is my object class at the moment, if needed.
You may implement Serializable interface in your class. This is an interface-marker, so it doesn't contain any methods and fields. Classes that do not implement this interface will not have any of their state serialized or deserialized. You have to must implement special methods with these exact signatures:
So, your "writeObject()" method will be like this:
And your "readObject" will be like this: