Write the sorted contents via an ouput stream

Assignment Help JAVA Programming
Reference no: EM132255473

Question: For this assignment, you will develop "starter" code. After you finish, your code should access an existing text file that you have created, create an input stream, read the contents of the text flie, sort and store the contents of the text file into an ArrayList, then write the sorted contents via an ouput stream to a separate output text file.

Copy and paste the following Java code into a JAVA source file in NetBeans:

import java.io.BufferedReader;

import java.io.BufferedWriter;

public class Datasort {

public static void main (String [] args) {

File fin = // input file

File fout = // create an out file

// Java FileInputStream class obtains input bytes from a file

FileInputStream fis = new FileInputStream(fin);

// buffering characters so as to provide for the efficient reading of characters, arrays, and lines

BufferedReader in = new BufferedReader(new InputStreamReader(fis));

// declare an array in-line, ready for the sort

String aLine;

ArrayList<String> al = new ArrayList<String> ();

int i = 0;

while ((aLine = in.readLine()) != null) {

// set the sort for values is greater than 0

Collections.sort(al); // sorted content to the output file

{

System.out.println(s);

}

// close the 2 files

}

}

Add code as indicated in the comments.

Reference no: EM132255473

Questions Cloud

Post a brief explanation of one challenge you may encounter : Post a brief explanation of one challenge you may encounter if you attempted to integrate the theory you selected.
Describe two theory-based interventions you would use : Develop treatment plans based on this week's theories, ask yourself how you recognize emotion in the relational dynamics of the couple or family.
Draw a revised process diagram and model : Draw a revised process diagram/model that reflects the improved business process. Format your paper according to APA guidelines.
The key attribute to calculating the safety stock : An item’s variation of demand during its lead time is the key attribute to calculating the safety stock for that item
Write the sorted contents via an ouput stream : For this assignment, you will develop "starter" code. After you finish, your code should access an existing text file that you have created.
What is the implied cost of shortage per quart : A small grocery store sells fresh produce, which it obtains from a local farmer. What is the implied cost of shortage per quart?
Analysis of the time interval between Geyser eruptions : Evaluation of engineering data using statistics Project - Work in Wolfram Mathematica. Analysis of the time interval between Geyser eruptions
Unions and employee rights : What public policies would you advocate, based on your view of the future role of unions in the US?
Define characteristics and qualities of successful cios : The role of CIO is the most influential capacity in the IT organization. Give your opinion on the most important characteristics and qualities of successful.

Reviews

Write a Review

JAVA Programming Questions & Answers

  Recursive factorial program

Write a class Array that encapsulates an array and provides bounds-checked access. Create a recursive factorial program that prompts the user for an integer N and writes out a series of equations representing the calculation of N!.

  Hunt the wumpus game

Reprot on Hunt the Wumpus Game has Source Code listing, screen captures and UML design here and also, may include Javadoc source here.

  Create a gui interface

Create GUI Interface in java programing with these function: Sort by last name and print all employees info, Sort by job title and print all employees info, Sort by weekly salary and print all employees info, search by job title and print that emp..

  Plot pois on a graph

Write a JAVA program that would get the locations of all the POIs from the file and plot them on a map.

  Write a university grading system in java

University grading system maintains number of tables to store, retrieve and manipulate student marks. Write a JAVA program that would simulate a number of cars.

  Wolves and sheep: design a game

This project is designed a game in java. you choose whether you'd like to write a wolf or a sheep agent. Then, you are assigned to either a "sheep" or a "wolf" team.

  Build a graphical user interface for displaying the image

Build a graphical user interface for displaying the image groups (= cluster) in JMJRST. Design and implement using a Swing interface.

  Determine the day of the week for new year''s day

This assignment contains a java project. Project evaluates the day of the week for New Year's Day.

  Write a java windowed application

Write a Java windowed application to do online quiz on general knowledge and the application also displays the quiz result.

  Input pairs of natural numbers

Java program to input pairs of natural numbers.

  Create classes implement java interface

Interface that contains a generic type. Create two classes that implement this interface.

  Java class, array, link list , generic class

These 14 questions covers java class, Array, link list , generic class.

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