Examlex

Solved

Import Java.nio.file.*; Import Java.io.*;

question 38

Short Answer

import java.nio.file.*;
import java.io.*;
public class ReadEmployeeFile2
{
   public static void main(String[] args)
   {
      Path file =
        Paths.get("C:\\Java\\Chapter.13\\Employees.txt");
     String[] array = new String[3];
     String s = "";
     String delimiter = ",";
     int id;
     String name;
     double payRate;
     double gross;
     final double HRS_IN_WEEK = 40;
     double total = 0;
     try
     {
        InputStream input = new
            BufferedInputStream(Files.newInputStream(file));
        BufferedReader reader = new
           BufferedReader(new InputStreamReader(input));
        System.out.println();
        s = reader.readLine();
        while(s != null)
        {
           -----Code here-----
           id = Integer.parseInt(array[0]);
           name = array[1];
           payRate = Double.parseDouble(array[2]);
           gross = payRate * HRS_IN_WEEK;
           System.out.println("ID#" + id + " " + name +
             " $" + payRate + " $" + gross);
           total += gross;
           s = reader.readLine();
       }
       reader.close();
   }
   catch(Exception e)
   {
       System.out.println("Message: " + e);
    }
   System.out.println(" Total gross payroll is $" + total);
   }
}
The above code demonstrates a retrieved file where Strings are split into usable fields. On the indicated line, write a String class split() method to split the String s that accepts an argument that identifies the field delimiter (in this example, a comma) and returns an array of Strings . The result should be assigned to the String[] array .


Definitions:

More Serious Injury

Describes an injury that exceeds in severity when compared to standard or minor injuries, often implying the need for extensive medical treatment or causing long-term impairment.

Strict Liability

A legal principle that holds a party responsible for damages or harm caused without the need to prove negligence or fault.

Contributory Negligence

A legal principle where the plaintiff is partially responsible for the harm caused and the compensation may be reduced accordingly.

Dry-Cleaning Chemicals

Dry-cleaning chemicals are solvents used in the dry-cleaning process to remove stains from fabrics without the use of water, commonly including perchloroethylene.

Related Questions