Skip to main content

Creating A Simple Text Formatter Program in Java

import java.io.*;
import java.util.*;
/**
* Fmt -format text (like Berkeley Unix fmt).
*/
public class Fmt {
/** The maximum column width */
public static final int COLWIDTH=72;
/** The file that we read and format */
BufferedReader in;
/** If files present, format each, else format the standard input.
*/
public static void main(String[] av) throws IOException {
if (av.length == 0)
new Fmt(System.in).format( );
else for (int i=0; i<av.length; i++)
new Fmt(av[i]).format( );
}
/** Construct a Formatter given a filename */
public Fmt(String fname) throws IOException {
in = new BufferedReader(new FileReader(fname));
}
/** Construct a Formatter given an open Stream */
public Fmt(InputStream file) throws IOException {
in = new BufferedReader(new InputStreamReader(file));
}
/** Format the File contained in a constructed Fmt object */
public void format( ) throws IOException {
String w,f;
int col = 0;
while ((w = in.readLine( )) != null) {
if (w.length( ) == 0) { // null line
System.out.print("\n"); // end current line
if (col>0) {
System.out.print("\n"); // output blank line
col = 0;
}
continue;
}
// otherwise it's text, so format it.
StringTokenizer st = new StringTokenizer(w);
while (st.hasMoreTokens( )) {
f = st.nextToken( );
if (col + f.length( ) > COLWIDTH)

{

System.out.print("\n");
col = 0;
}
System.out.print(f + " ");
col += f.length( ) + 1;
}
}
if (col>0) System.out.print("\n");
in.close( );
}
}

Comments

Popular posts from this blog

Defination of the essential properties of operating systems

Define the essential properties of the following types of operating sys-tems:  Batch  Interactive  Time sharing  Real time  Network  Parallel  Distributed  Clustered  Handheld ANSWERS: a. Batch processing:-   Jobs with similar needs are batched together and run through the computer as a group by an operator or automatic job sequencer. Performance is increased by attempting to keep CPU and I/O devices busy at all times through buffering, off-line operation, spooling, and multi-programming. Batch is good for executing large jobs that need little interaction; it can be submitted and picked up later. b. Interactive System:-   This system is composed of many short transactions where the results of the next transaction may be unpredictable. Response time needs to be short (seconds) since the user submits and waits for the result. c. Time sharing:-   This systems uses CPU scheduling and multipro-gramming to provide econ...

AirBnB Infographic Journey to IPO

  Full Post at  https://techpomelo.com/2020/10/infographics-airbnb-milestone-journey-to-ipo/