Created
March 30, 2015 19:38
-
-
Save khatchad/a281fa7b93d511bca43e to your computer and use it in GitHub Desktop.
This program writes data to a file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Scanner; // Needed for Scanner class | |
import java.io.*; // Needed for File I/O classes | |
/** | |
This program writes data to a file. | |
*/ | |
public class FileWriteDemo | |
{ | |
public static void main(String[] args) throws IOException | |
{ | |
String filename; // File name | |
String friendName; // Friend's name | |
int numFriends; // Number of friends | |
// Create a Scanner object for keyboard input. | |
Scanner keyboard = new Scanner(System.in); | |
// Get the number of friends. | |
System.out.print("How many friends do you have? "); | |
numFriends = keyboard.nextInt(); | |
// Consume the remaining newline character. | |
keyboard.nextLine(); | |
// Get the filename. | |
System.out.print("Enter the filename: "); | |
filename = keyboard.nextLine(); | |
// Open the file. | |
PrintWriter outputFile = new PrintWriter(filename); | |
// Get data and write it to the file. | |
for (int i = 1; i <= numFriends; i++) | |
{ | |
// Get the name of a friend. | |
System.out.print("Enter the name of friend " + | |
"number " + i + ": "); | |
friendName = keyboard.nextLine(); | |
// Write the name to the file. | |
outputFile.println(friendName); | |
} | |
// Close the file. | |
outputFile.close(); | |
System.out.println("Data written to the file."); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment