Question
(Intro to Java help?) Write a static method named fixSpacing that accepts a Scanner representing a file as a parameter and writes that file's text
(Intro to Java help?)
Write a static method named fixSpacing that accepts a Scanner representing a file as a parameter and writes that file's text to the console, with multiple spaces or tabs reduced to single spaces between words that appear on the same line.
For example, if the input file contains the following text,
four score and
seven years ago our
fathers brought forth
on this continent
a new
nation
then your method should produce the following output:
four score and
seven years ago our
fathers brought forth
on this continent
a new
nation
Notice that some lines might be blank. Each word is to appear on the same line in the output on which it appears in the input file.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started