Answer:
Explanation:
Code
import java.util.Scanner;
public class FileReader{
public static void main(String []args) throws FileNotFoundException {
Scanner scanner = new Scanner(new FileInputStream(new File("D:/input.txt")));
String output="";
while(scanner.hasNextLine()){
output+=scanner.nextLine()+" ";
}
System.out.println(output);
}
}
Code Explanation
Create scanner object by passing file input stream which will read file as input.
Then declare a string variable which will cancatinate the file text into single line util we don't have any other input from scanner.
Then print that output.
Input File
Hello this is dummy
file.
happy holidays
bye
Output
Hello this is dummy file. happy holidays bye