Own file to test your program

Assignment Help JAVA Programming
Reference no: EM13164409

Write a program which reads a file and creates a file with the same contents of all lower case letters. Keep in mind that other characters are not affected.
Create your own file to test your program. Your job is to set up the input and output files to have the program read from a file and write to a file. Here is a basic program that will accomplish what is desired:

import java.io.*;
class InputOutput
{
public static void main(String args[])throws Exception
{
FileReader fr = new FileReader("Exercise03.in");
FileWriter fw = new FileWriter("Exercise03.out");

Answer6

int ch;
ch = fr.read();
while(ch != -1)
{
if((char)ch>='A' && (char)ch<='Z')ch = ch +('a'-'A');
fw.write((char)ch);
ch = fr.read();
}
fr.close();
fw.close();
}
}

Reference no: EM13164409

Questions Cloud

What is the partial pressure of oxygen : A gaseous mixture of O2 and N2 contains 30.8 nitrogen by mass. What is the partial pressure of oxygen in the mixture if the total pressure is 805 mmHg ?
State deficiency of phosphoglyceromutase : Deficiency of phosphoglyceromutase d) mutation that interferes with the formation of quarternary structure in hemoglobin
What is the molarity of the saturated solution : the solubility of O2(g) in water is 4.43 mg O2/100 g H20 at 20 degree Celsius when the gas pressure is maintained at 1 atm. What is the molarity of the saturated solution?
Rank following quantities in order of decreasing distance : Rank from longest to shortest distance. To rank the items as equivalent, overlap them.
Own file to test your program : Create your own file to test your program. Your job is to set up the input and output files to have the program read from a file and write to a file. Here is a basic program that will accomplish what is desired
State what concentration of substrate will give a velocity : what concentration of substrate will give a velocity (v) of 62% of maximal velocity (Vmax)?
Why it is desirable for corporations : Using a standard format memo please discuss the why it is desirable for corporations, charities, and NGOs to change their External Audit firms every 7-10 years.
The warehouses the firm supplies retail outlets : DSS Inc. is an electronics company with production facilities located in Atlanta, Boston, and Chicago. Components produced at these facilities may be shipped to the firm's regional warehouses that are located in Edison and Fargo. From the warehouses ..
What was the final volume of water on the buret : A volume of water was delivered using a buret and experimentally determined to have a mass of 2.00-g. What was the final volume of water on the buret if the inital was 0.44-mL? [assume the density of water is 1.00g/mL]

Reviews

Write a Review

JAVA Programming Questions & Answers

  Uses a 2-d array to store the highest and lowest temperature

Write a program that uses a 2-D array to store the highest and lowest temperatures for each montjh of the year. The program should output the average high, average low, and highest and lowest temperatures of the year. Your program must consist of ..

  Display student details and classes in applet

Display student details and classes they have enrolled in Applet. The Applet should have following features. Update and View.

  Write java program to utilizes gui with five text fields

Write down the program called MaxMinAvgGUI.java which utilizes GUI with five(5)text fields which asks user to enter 5(five) decimal numbers. 1(one)number in each text field.

  Create a project using the classes in the doc sharing area

create a project using the classes in the Doc Sharing area labeled A Simple LinkedList class. Compile it, run it, and review the code that is given carefully. This code tests the LinkedList class provided in the lecture.

  Write java program which simulates flipping of coin

Write a Java program which simulates flipping of coin 1000 times and prints total number of heads and tails. You should create a class.

  Difference between the two following statements

What exactly is the difference between the two following statements and which is preferred, please provide details: 1) frame.setSize(400, 300); // Set JFrame Size

  Create three classes for a customer

a travel manager and have a job of buying a travel package for a customer. You must create three classes for this programming challenge: Customer, Ticket, and TravelManagerDemo.

  Develop a program that will handle a golfer and his scores

develop a program that will handle a Golfer and his scores. The program will be comprised of two classes: a Golfer class that will manage all the golfer's scores and a Score class.This is a class designed to represent a golfer including his name, hom..

  Algorithm analysis with advanced data structures

Write a program to help the merchants devise a sequence of transmutations that would change silver into gold with the smallest possible total fee paid to the alchemists.

  Technical community blog

Write a blog article for a coding and technical community blog.

  Write java program to store employee id number

Use employee data file called employees.txt should comprise at least 5 employee records. Each record stores employee ID number (six digits) last name, first name, middle inital,gender(m or f).

  Write java program to find calories-conditional operator

Write down the answer for this program? Write down Java program (use Conditional (? Operator) which suggests number of calories a person must eat each day.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd