Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask Java Expert


Home >> Java

Operation

· When the application starts, it displays the Index page. This page contains a link that leads to the Products page that can be used to view and add products.

· To add a new product, the user selects the Add Product button. This displays the Product page with all text fields empty. Then, the user can fill in the text fields and click on the Update Product button to add the product.

Specifications

· Use a Product class like the one shown later in this document to store the product data.

· Use a ProductIO class like the one shown later in this document to read the product data from a text file named products.txt in the WEB-INF directory.

· Use a text file like the products.txt file shown later in this document as a starting point for the products that are available to the application.

· Use server-side validation to validate all user entries. In particular, make sure the user enters a code, description, and price for each product. In addition, make sure the product's price is a valid double value.

· Get the Product.java, ProductIO.java, and product.txt files from your instructor. The files are also provided below:

The Product class

package books;

import java.text.NumberFormat;

import java.io.Serializable;

public class Product implements Serializable

{

private String code;

private String description;

private double price;


public Product()

{

code = "";

description = "";

price = 0;

}

public void setCode(String code)

{

this.code = code;

}

public String getCode()

{

return code;

}


public void setDescription(String description)

{

this.description = description;

}

public String getDescription()

{

return description;

}

public void setPrice(double price)

{

this.price = price;

}

public double getPrice()

{

return price;

}


public String getPriceNumberFormat()

{

NumberFormat number = NumberFormat.getNumberInstance();

number.setMinimumFractionDigits(2);

if (price == 0)

return "";

else

return number.format(price);

}


public String getPriceCurrencyFormat()

{

NumberFormat currency = NumberFormat.getCurrencyInstance();

return currency.format(price);

}

}

The ProductIO class

package books;


import java.io.*;

import java.util.*;



public class ProductIO

{

private static ArrayList products = null;


public static ArrayList getProducts(String path)

{

products = new ArrayList();

File file = new File(path);

try

{

BufferedReader in =

new BufferedReader(

new FileReader(file));


String line = in.readLine();

while (line != null)

{

StringTokenizer t = new StringTokenizer(line, "|");

if (t.countTokens() >= 3)

{

String code = t.nextToken();

String description = t.nextToken();

String priceAsString = t.nextToken();

double price = Double.parseDouble(priceAsString);


Product p = new Product();

p.setCode(code);

p.setDescription(description);

p.setPrice(price);

products.add(p);

}

line = in.readLine();

}

in.close();

return products;

}

catch(IOException e)

{

e.printStackTrace();

return null;

}

}

public static Product getProduct(String productCode, String path)

{

products = getProducts(path);

for (Product p : products)

{

if (productCode != null &&

productCode.equalsIgnoreCase(p.getCode()))

{

return p;

}

}

return null;

}


public static boolean exists(String productCode, String path)

{

products = getProducts(path);

for (Product p : products)

{

if (productCode != null &&

productCode.equalsIgnoreCase(p.getCode()))

{

return true;

}

}

return false;

}


private static void saveProducts(ArrayList products,

String path)

{

try

{

File file = new File(path);

PrintWriter out =

new PrintWriter(

new FileWriter(file));


for (Product p : products)

{

out.println(p.getCode() + "|"

+ p.getDescription() + "|"

+ p.getPrice());

}


out.close();

}

catch(IOException e)

{

e.printStackTrace();

}

}


public static void insert(Product product, String path)

{

products = getProducts(path);

products.add(product);

saveProducts(products, path);

}


public static void update(Product product, String path)

{

products = getProducts(path);

for (int i = 0; i < products.size(); i++)

{

Product p = products.get(i);

if (product.getCode() != null &&

product.getCode().equalsIgnoreCase(p.getCode()))

{

products.set(i, product);

}

}

saveProducts(products, path);

}

public static void delete(Product product, String path)

{

products = getProducts(path);

for (int i = 0; i < products.size(); i++)

{

Product p = products.get(i);

if (product != null &&

product.getCode().equalsIgnoreCase(p.getCode()))

{

products.remove(i);

}

}

saveProducts(products, path);

}

}

A product.txt file that contains four products

J601|The Complete Geek's Guide to Java|34.95

CP01|C++ for Nerds|42.95

CP02|Advanced C++ for Nerds|37.95

C001|Old School Progamming Using ‘C'|14.95

Java, Programming

  • Category:- Java
  • Reference No.:- M91412000
  • Price:- $35

Priced at Now at $35, Verified Solution

Have any Question?


Related Questions in Java

Can someone kindly help me to consider whether java

Can someone kindly help me to consider whether Java provides the facility of operator overloading? If it does, may you kindly describe how overloading operators can be accomplished? If not, may you kindly describe why yo ...

Assignment - method in our madnessthe emphasis for this

Assignment - "Method in our Madness" The emphasis for this assignment is methods with parameters. In preparation for this assignment, create a folder called Assign_3 for the DrJava projects for the assignment. A Cityscap ...

Operating systems assignment -problem 1 sharing the bridgea

Operating Systems Assignment - Problem 1: Sharing the Bridge A new single lane bridge is constructed to connect the North Island of New Zealand to the South Island of New Zealand. Farmers from each island use the bridge ...

Project requirementsfor the problem described in the next

Project requirements For the problem described in the next section, you must do the following: 1. include your student ID at the end of all filenames for all java code files. Three classes have been identified in section ...

Assessment database and multithread programmingtasktask 1

Assessment: Database and Multithread Programming Task Task 1: Grade Processing University grading system maintains a database called "GradeProcessing" that contains number of tables to store, retrieve and manipulate stud ...

Answer the following question whats the difference public

Answer the following Question : What's the difference public inheritance and private inheritance? What can derived classes inherit from base classes? What cannot be inherited from base classes?

Assessment socket programmingtaskwrite a java gui program

Assessment: Socket Programming Task Write a JAVA GUI program that would facilitate text chatting/exchanging between two or multiple computers over the network/internet, using the concept of JAVA socket programming. If yo ...

In ruby the hash class inherits from enumerable suggesting

In Ruby, the Hash class inherits from Enumerable, suggesting to a programmer that Hashes are collections. In Java, however, the Map classes are not part of the JCF (Java Collections Framework). For each language, provide ...

Project descriptionwrite a java program to traverse a

Project Description: Write a java program to traverse a directory structure (DirWalker.java) of csv files that contain csv files with customer info. A simple sample in provided in with the sample code but you MUST will r ...

Applied software engineering assignment 1 -learning

Applied Software Engineering Assignment 1 - Learning outcomes - 1. Understand the notion of software engineering and why it is important. 2. Analyse the risk factors associated with phases of the software development lif ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As