Server IP : 172.16.15.8 / Your IP : 18.189.185.63 Web Server : Apache System : Linux zeus.vwu.edu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Wed Nov 6 14:29:02 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.2.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0705) : /home/gcjohnson/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
// // Assignment: Assignment4.java // Name: Glenn Johnson // Class: CS440 // Instructor: Dr. Wang // Purpose: To sort a queue of names and output sorted list import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.Scanner; import java.io.File; import java.io.PrintWriter; public class assignment4 { public static void main(String[] args) throws java.io.FileNotFoundException { ArrayList<String> names = new ArrayList<String>(); if(args.length < 1) { System.out.println("Need a file to sort."); } else { String filename; if (args.length == 1) { filename = "assignment4output.txt"; } else { filename = args[1]; } Scanner input = new Scanner (new File(args[0])); PrintWriter output = new PrintWriter (filename); String text; int length = 0; while(input.hasNextLine()) { text = input.nextLine(); names.add(text); length ++; } input.close(); Collections.sort(names); output.print(names); output.close(); } } }