How do I incoporate buffered writer to my random guessing game?
I have a task where I need to incorporate buffered writer into my Java code as a way to restore the guesses if the program crashes. For example, the program would ask, "do you want to restore the same guesses you had?".
I am a bit lost on what to do. Any suggestions or help would be greatly appreciated.
import java.util.*;
public class Guess{
public static void main(String args){
Scanner scan = new Scanner(System.in);
String playAgain = "";
do {
int randomTarget = randomNumberGenerator();
int userInput = 0;
System.out.println("Welcome to the random number generator game!");
System.out.println("Enter a number between 1 through 10:");
int count = 0;
while (userInput != randomTarget){
try{
userInput = scan.nextInt();
}catch(Exception e){
System.out.println("Invalid type.");
count++;
String s = scan.next();
System.out.println(s + " is an invalid input. Try again");
continue;
}
if (userInput > randomTarget){
count++;
System.out.println ("Number too high!");
}else if (userInput < randomTarget){
count++;
System.out.println("Number too low");
}else{
System.out.println("Congratulations, you guessed correctly!");
count++;
System.out.println("It took you: " + count + " tries!");
playAgainQ();
try {
playAgain = scan.next();
} catch (Exception e) {
System.out.println(playAgain + " is an invalid input. Try again");
continue;
}
}
}
} while (playAgain.equalsIgnoreCase("y"));
System.out.println("Thanks for playing. Goodbye!");
}
static void playAgainQ() {
System.out.println("Do you want to play again? Type y for yes.");
}
static int randomNumberGenerator() {
Random randomNumber = new Random();
int randomTarget = (randomNumber.nextInt(10) + 1);
return randomTarget;
}
}
java bufferedwriter
add a comment |
I have a task where I need to incorporate buffered writer into my Java code as a way to restore the guesses if the program crashes. For example, the program would ask, "do you want to restore the same guesses you had?".
I am a bit lost on what to do. Any suggestions or help would be greatly appreciated.
import java.util.*;
public class Guess{
public static void main(String args){
Scanner scan = new Scanner(System.in);
String playAgain = "";
do {
int randomTarget = randomNumberGenerator();
int userInput = 0;
System.out.println("Welcome to the random number generator game!");
System.out.println("Enter a number between 1 through 10:");
int count = 0;
while (userInput != randomTarget){
try{
userInput = scan.nextInt();
}catch(Exception e){
System.out.println("Invalid type.");
count++;
String s = scan.next();
System.out.println(s + " is an invalid input. Try again");
continue;
}
if (userInput > randomTarget){
count++;
System.out.println ("Number too high!");
}else if (userInput < randomTarget){
count++;
System.out.println("Number too low");
}else{
System.out.println("Congratulations, you guessed correctly!");
count++;
System.out.println("It took you: " + count + " tries!");
playAgainQ();
try {
playAgain = scan.next();
} catch (Exception e) {
System.out.println(playAgain + " is an invalid input. Try again");
continue;
}
}
}
} while (playAgain.equalsIgnoreCase("y"));
System.out.println("Thanks for playing. Goodbye!");
}
static void playAgainQ() {
System.out.println("Do you want to play again? Type y for yes.");
}
static int randomNumberGenerator() {
Random randomNumber = new Random();
int randomTarget = (randomNumber.nextInt(10) + 1);
return randomTarget;
}
}
java bufferedwriter
1
What do you mean by BufferedWriter? A Writer is just a mechanism of writing data to a file. In what state do you want to persist your data - as Objects, in some data interchange format (XML), or as pure text?
– Jakg
Nov 19 '18 at 21:19
1
If the program crashes, any objects associated with the program will also be lost. If you want to save information for use in between sessions, consider writing guesses (or whatever) to a file, to be restored later by reading from the file. Look into JSON serialize/deserialize using the GSON library
– PhaseRush
Nov 19 '18 at 22:06
add a comment |
I have a task where I need to incorporate buffered writer into my Java code as a way to restore the guesses if the program crashes. For example, the program would ask, "do you want to restore the same guesses you had?".
I am a bit lost on what to do. Any suggestions or help would be greatly appreciated.
import java.util.*;
public class Guess{
public static void main(String args){
Scanner scan = new Scanner(System.in);
String playAgain = "";
do {
int randomTarget = randomNumberGenerator();
int userInput = 0;
System.out.println("Welcome to the random number generator game!");
System.out.println("Enter a number between 1 through 10:");
int count = 0;
while (userInput != randomTarget){
try{
userInput = scan.nextInt();
}catch(Exception e){
System.out.println("Invalid type.");
count++;
String s = scan.next();
System.out.println(s + " is an invalid input. Try again");
continue;
}
if (userInput > randomTarget){
count++;
System.out.println ("Number too high!");
}else if (userInput < randomTarget){
count++;
System.out.println("Number too low");
}else{
System.out.println("Congratulations, you guessed correctly!");
count++;
System.out.println("It took you: " + count + " tries!");
playAgainQ();
try {
playAgain = scan.next();
} catch (Exception e) {
System.out.println(playAgain + " is an invalid input. Try again");
continue;
}
}
}
} while (playAgain.equalsIgnoreCase("y"));
System.out.println("Thanks for playing. Goodbye!");
}
static void playAgainQ() {
System.out.println("Do you want to play again? Type y for yes.");
}
static int randomNumberGenerator() {
Random randomNumber = new Random();
int randomTarget = (randomNumber.nextInt(10) + 1);
return randomTarget;
}
}
java bufferedwriter
I have a task where I need to incorporate buffered writer into my Java code as a way to restore the guesses if the program crashes. For example, the program would ask, "do you want to restore the same guesses you had?".
I am a bit lost on what to do. Any suggestions or help would be greatly appreciated.
import java.util.*;
public class Guess{
public static void main(String args){
Scanner scan = new Scanner(System.in);
String playAgain = "";
do {
int randomTarget = randomNumberGenerator();
int userInput = 0;
System.out.println("Welcome to the random number generator game!");
System.out.println("Enter a number between 1 through 10:");
int count = 0;
while (userInput != randomTarget){
try{
userInput = scan.nextInt();
}catch(Exception e){
System.out.println("Invalid type.");
count++;
String s = scan.next();
System.out.println(s + " is an invalid input. Try again");
continue;
}
if (userInput > randomTarget){
count++;
System.out.println ("Number too high!");
}else if (userInput < randomTarget){
count++;
System.out.println("Number too low");
}else{
System.out.println("Congratulations, you guessed correctly!");
count++;
System.out.println("It took you: " + count + " tries!");
playAgainQ();
try {
playAgain = scan.next();
} catch (Exception e) {
System.out.println(playAgain + " is an invalid input. Try again");
continue;
}
}
}
} while (playAgain.equalsIgnoreCase("y"));
System.out.println("Thanks for playing. Goodbye!");
}
static void playAgainQ() {
System.out.println("Do you want to play again? Type y for yes.");
}
static int randomNumberGenerator() {
Random randomNumber = new Random();
int randomTarget = (randomNumber.nextInt(10) + 1);
return randomTarget;
}
}
java bufferedwriter
java bufferedwriter
asked Nov 19 '18 at 21:15
JohnHandsomeJohnHandsome
132
132
1
What do you mean by BufferedWriter? A Writer is just a mechanism of writing data to a file. In what state do you want to persist your data - as Objects, in some data interchange format (XML), or as pure text?
– Jakg
Nov 19 '18 at 21:19
1
If the program crashes, any objects associated with the program will also be lost. If you want to save information for use in between sessions, consider writing guesses (or whatever) to a file, to be restored later by reading from the file. Look into JSON serialize/deserialize using the GSON library
– PhaseRush
Nov 19 '18 at 22:06
add a comment |
1
What do you mean by BufferedWriter? A Writer is just a mechanism of writing data to a file. In what state do you want to persist your data - as Objects, in some data interchange format (XML), or as pure text?
– Jakg
Nov 19 '18 at 21:19
1
If the program crashes, any objects associated with the program will also be lost. If you want to save information for use in between sessions, consider writing guesses (or whatever) to a file, to be restored later by reading from the file. Look into JSON serialize/deserialize using the GSON library
– PhaseRush
Nov 19 '18 at 22:06
1
1
What do you mean by BufferedWriter? A Writer is just a mechanism of writing data to a file. In what state do you want to persist your data - as Objects, in some data interchange format (XML), or as pure text?
– Jakg
Nov 19 '18 at 21:19
What do you mean by BufferedWriter? A Writer is just a mechanism of writing data to a file. In what state do you want to persist your data - as Objects, in some data interchange format (XML), or as pure text?
– Jakg
Nov 19 '18 at 21:19
1
1
If the program crashes, any objects associated with the program will also be lost. If you want to save information for use in between sessions, consider writing guesses (or whatever) to a file, to be restored later by reading from the file. Look into JSON serialize/deserialize using the GSON library
– PhaseRush
Nov 19 '18 at 22:06
If the program crashes, any objects associated with the program will also be lost. If you want to save information for use in between sessions, consider writing guesses (or whatever) to a file, to be restored later by reading from the file. Look into JSON serialize/deserialize using the GSON library
– PhaseRush
Nov 19 '18 at 22:06
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53382750%2fhow-do-i-incoporate-buffered-writer-to-my-random-guessing-game%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53382750%2fhow-do-i-incoporate-buffered-writer-to-my-random-guessing-game%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
What do you mean by BufferedWriter? A Writer is just a mechanism of writing data to a file. In what state do you want to persist your data - as Objects, in some data interchange format (XML), or as pure text?
– Jakg
Nov 19 '18 at 21:19
1
If the program crashes, any objects associated with the program will also be lost. If you want to save information for use in between sessions, consider writing guesses (or whatever) to a file, to be restored later by reading from the file. Look into JSON serialize/deserialize using the GSON library
– PhaseRush
Nov 19 '18 at 22:06