Question
import java.io.*; public class WordCount { public static void main(String args[]) throws Exception{ int rowCount=1; String eachLine; File fileInput=new File(srcInput.txt); File fileOutput=new File(srcOutput.txt); BufferedWriter BWriter
import java.io.*; public class WordCount { public static void main(String args[]) throws Exception{ int rowCount=1; String eachLine; File fileInput=new File("src\\Input.txt"); File fileOutput=new File("src\\Output.txt"); BufferedWriter BWriter = new BufferedWriter(new FileWriter(fileOutput, true)); FileReader fileName = new FileReader(fileInput); BufferedReader bReader = new BufferedReader(fileName); RandomAccessFile removeExistedData = new RandomAccessFile(fileOutput, "rw"); removeExistedData.setLength(0); while((eachLine = bReader.readLine()) != null) { String NumberofWords[]=eachLine.split(" "); BWriter.write(rowCount+++". "+NumberofWords.length+" "+eachLine+" "); } BWriter.close(); bReader.close(); } }
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