Capitalize a String using FileOutputStream in Java

Problem:

Using a FilelnputStream, you should read a list of strings from a file called "strings.txt". The first line in the file will represent the number of lists. After reading the lists and storing them in a String array, you should use a FileOutputStream and save the lists to a file called "stringsUp.txt". The string should be saved in upper case.

Output:

3
The quick brown fox
Java is King
This lab is awesome

THE QUICK BROWN FOX
JAVA IS KING
THIS LAB IS AWESOME

Solution:

import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.Scanner;

public class ProblemB {

 public static void main(String args[]) {
  try {
   Scanner scan = new Scanner(new File("strings.txt"));
   
   int n = scan.nextInt();
   scan.nextLine();
   String[] strings = new String[n];
   
   for (int i = 0; i < n; i++)
    strings[i] = scan.nextLine();
   
   scan.close();
   
   PrintWriter out = new PrintWriter(new File("stringsUp.txt"));
   
   for (int i = 0; i < n; i++) {
    out.println(strings[i].toUpperCase());
    out.flush();
   }
   
   out.close();
   
  } catch (IOException e) {
   System.err.println("Could not read from file");
  }
 }
}


1 comment :

  1. liposuction cost Korea's #1 Liposculpture Clinic. Lydian plastic surgery is the home of VIP patients. Celebrities, Influencers and Diplomats all know and trust Doctor An and Lydian plastic surgery clinic to provide detailed results.

    ReplyDelete

Follow Me

If you like our content, feel free to follow me to stay updated.

Subscribe

Enter your email address:

We hate spam as much as you do.

Upload Material

Got an exam, project, tutorial video, exercise, solutions, unsolved problem, question, solution manual? We are open to any coding material. Why not upload?

Upload

Copyright © 2012 - 2014 Java Problems  --  About  --  Attribution  --  Privacy Policy  --  Terms of Use  --  Contact