Search
 
SCRIPT & CODE EXAMPLE
 

JAVA

how to calculate min, max and average and write the output into into a text file in java

package TrialPrograms;

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.util.HashSet;
import java.util.Set;
import java.util.TreeSet;

public class Test {

    public static void main(String[] args) throws IOException {



        FileInputStream fi = new FileInputStream("F:Testfile.txt");
        FileOutputStream fo = new FileOutputStream("F:Testoutput.txt");
        BufferedReader br = new BufferedReader(new InputStreamReader(fi));
        BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(fo));

        String strLine;
        while ((strLine = br.readLine()) != null)   {

              String[] arr = strLine.split(" ");
              String[] nos = arr[1].split(",");

              Set<Integer> set = new HashSet<Integer>();  
              for(int i = 0; i<nos.length; i++){
                  int no = Integer.parseInt(nos[i]);
                       set.add(no); 
                    }
              TreeSet<Integer> sortedSet = new TreeSet<Integer>(set); 

              switch(arr[0]) {

              case "Min:":
                  String msg1="The Min of [" +arr[1]+ "] is " +(Integer)sortedSet.first();
                  bw.write(msg1);
                  bw.newLine();

                  break;

              case "Max:":
                  String msg2="The Max of [" +arr[1]+ "] is " +(Integer)sortedSet.last();
                  bw.write(msg2);
                  bw.newLine();
                  break;

              case "Avg:":
                  Object[] noarray = sortedSet.toArray();
                  int noarraysize = noarray.length-1;
                  int sum=0;
                  for(int i=0;i<=noarraysize;i++) {

                      int no=Integer.valueOf(noarray[i].toString());
                      sum = sum + no;
                      if(i==noarraysize) {
                          String msg3="The Avg of [" +arr[1]+ "] is  " +(double)sum/noarray.length;
                          bw.write(msg3);
                          bw.newLine();
                                                  }
                  }
                  break;

              case "Sum:":
                  Object[] noarray1 = sortedSet.toArray();
                  int noarraysize1 = noarray1.length-1;
                  int sum1=0;
                  for(int i=0;i<=noarraysize1;i++) {
                      int no=Integer.valueOf(noarray1[i].toString());
                      sum1 = sum1 + no;
                      if(i==noarraysize1) {
                          String msg4="The Sum of [" +arr[1]+ "] is  " +sum1;
                          bw.write(msg4);
                          bw.newLine();
                                                  }
                  }
                  break;

            }

    }
        br.close();
        bw.close();

    }
}
Comment

how to calculate min, max and average and write the output into into a text file in java

import java.io.File;
import java.util.Formatter;
import java.util.Scanner;

public class ExternalData {

public static void main(String[] args) {

    try {
        System.out.print("Enter the file name with extension : ");

        Scanner input = new Scanner(System.in);

        File file = new File(input.nextLine());

        input = new Scanner(file);

        while (input.hasNextLine()) {
            int min = input.nextInt();
            while(input.hasNextInt());
            int num = input.nextInt();
            if(num < min) {
                min = num;
            }

            while (input.hasNextLine()) {
                int max = input.nextInt();
                while(input.hasNextInt());
                int num2 = input.nextInt();
                if(num2 > min) {
                    min = num;

            String avg = input.nextLine();




            Formatter f = new Formatter("C:UsersKevinDropboxKevin 
            Carter-8042Intro to Soft EngTask 12outputTest.txt");

            // print the formatted strings to the file
            f.format("The min of [1,2,3,4,5,6] is " + min);

            f.format("

The max of [1,2,3,4,5,6] is " + max);

            f.format("

The avg of [1,2,3,4,5,6] is " + avg);
            f.close();    
            }     

            } catch (Exception ex) {
              ex.printStackTrace();
            }

          }

       }
Comment

PREVIOUS NEXT
Code Example
Java :: Java StringBuilder filter same lines 
Java :: android studio fecth audio from app directory 
Java :: nitrite get repo structure 
Sql :: safe mode off mysql 
Sql :: PROSYS SQL BKP 
Sql :: mysql create user with mysql_native_password 
Sql :: select nls_date_format 
Sql :: dbms_scheduler drop_job 
Sql :: alter user mysql native password 
Sql :: how to truncate table with foreign key constraint 
Sql :: . ERROR! The server quit without updating PID file (/usr/local/var/mysql/MacBook-Pro-de-Quentin.local.pid). 
Sql :: uninstall postgresql mac 
Sql :: oracle get current schema 
Sql :: get tables in database sql 
Sql :: sql get missing id 
Sql :: disable foreign key constraint mysql 
Sql :: mysql search for column name in all tables 
Sql :: postgres add not null to existing column 
Sql :: STRING_AGG order by 
Sql :: select users 
Sql :: rename table sql 
Sql :: postgresql print sessions using the database 
Sql :: sql database size 
Sql :: mariadb alter user host 
Sql :: postgresql convert text to float 
Sql :: mysql count words 
Sql :: mysql import sql file 
Sql :: pyodbc connect to sql server 
Sql :: t-sql disable system versioning 
Sql :: mysql delete binlog 
ADD CONTENT
Topic
Content
Source link
Name
4+3 =