MyProgrammingLab with Pearson eText -- Access Code Card -- for Building Java Programs
MyProgrammingLab with Pearson eText -- Access Code Card -- for Building Java Programs
5th Edition
ISBN: 9780135472460
Author: REGES, Stuart, Stepp, Marty
Publisher: PEARSON
bartleby

Videos

Expert Solution & Answer
Book Icon
Chapter 6, Problem 6E

Explanation of Solution

Program code:

Main.java

//import the required packages

import java.io.File;

import java.io.FileNotFoundException;

import java.util.Scanner;

//define a class Main

public class Main

{

//define a method readEntireFile

public static String readEntireFile(Scanner sc)

{

//create a string variable

String result = "";

//iterate a while loop to get the lines

while (sc.hasNextLine())

{

//getting lines of the file

String line = sc.nextLine();

//concatenating the lines

result += line;

}

//return the result

return result;

    }

    //define the main() method

public static void main(String[] args) throws FileNotFoundException

{

//create the Scanner object

Scanner in = new Scanner(System.in);

//prompt the user to enter the name of the file

System.out.println("Enter file name:");

//create object of the File class and scan for the file name

File file = new File(in.nextLine());

//referring the file using Scanner object

in = new Scanner(file);

//call the method readEntireFile

String content = readEntireFile(in);

//print the contents of the file

System.out.println("Contents of the file are:\n" + content); 

}

}

Example...

Blurred answer

Chapter 6 Solutions

MyProgrammingLab with Pearson eText -- Access Code Card -- for Building Java Programs

Knowledge Booster
Background pattern image
Computer Science
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education
Files & File Systems: Crash Course Computer Science #20; Author: CrashCourse;https://www.youtube.com/watch?v=KN8YgJnShPM;License: Standard YouTube License, CC-BY
UNIX Programming (Part - 10) The File System (Directories and Files Names); Author: ITUTEES;https://www.youtube.com/watch?v=K35faWBhzrw;License: Standard Youtube License