Use server-side validation to validate all user entries

Assignment Help JAVA Programming
Reference no: EM13842192

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<Product> products = null;


public static ArrayList<Product> getProducts(String path)

{

products = new ArrayList<Product>();

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<Product> 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

Reference no: EM13842192

Questions Cloud

Prepare a business plan for hot mom tshirt : Business Name: Hot MoM's Tshirt. Business Plan will have- Executive Summary - the core of your business planCompany Summary, Products/Services
Explain how is the ricardian model was tested empirically : Explain how is the Ricardian model was tested empirically. To what extent can we assert that the Ricardian model provides a good representation of the real world
Why motivational considerations be a part of budget planning : Why should motivational considerations be a part of budget planning and utilization? List several ways to motivate employees with budgets.
Define class bankaccount to implement the basic properties : define the class bankaccount to implement the basic properties
Use server-side validation to validate all user entries : Use server-side validation to validate all user entries
Components of a business model : There are four components of a business model: Core Strategy, Strategic Resources, Partnership Network, and Customer interface. Which component of the business model do you feel gave Tata Motors, its real competitive edge
Prepare a schedule for each of the three years : Prepare a schedule for each of the three years (2015through 2017) in which you summarize the transactions as they affect permanently restricted, temporarilyrestricted, and unrestricted net assets.
What is each projects irr : What is each projects IRR - what is the crossover rate, and what is its significance and what is the regular payback period for these two projects?
Writing term paper on foster children and special education : Writing a term paper on foster children and special education. The goal is to learn about the unique problems of foster care children who have special education needs, such as, do they tend to receive less services overall, what percentage of spec..

Reviews

Write a Review

JAVA Programming Questions & Answers

  User-defined methods

You will create the ShoutBox class for your Virtual World. Your ShoutBox class will have a shoutOutCannedMessage() method that returns a String type.

  Create the mouse program

Question 1: Create the Mouse program. Test it with interesting data. Question 2: Modify the MouseDriver program you just created in Question #1. Currently, it uses the same value of growthRate for both mice. Change the program so it accepts a d..

  Write a program in java that reads contents of two vectors

Write a program in Java that reads contents of two vectors, and then displays the sum of these two vectors. The program should prompt the user to enter the size of the vectors first.

  How does a client send a string ti the server using udp

How does a client send a string ti the server using UDP? Show what the client would do to get data from some string, and create a datagram packet destined for a server at "www.google.com", port 12345.

  Design and implement a small and simple email server using

design and implement a small and simple email server using the concept of web based information system. your system

  Java program using jgrasp and the software development kit

Design a GUI program to find the weighted average of four test scores. The four test scores and their respective weights are given in the following format:

  Write a method called writenums

Write a method called writeNums that takes an integer n as a parameter and prints to the console the first n integers starting with 1 in sequential order, separated by commas. For example, consider the

  Implement avl trees that allows both iterative traversal

implement avl trees that allows both iterative traversal and recursive traversal.iterative traversal is fairly easy if

  Loop structure

Suggest one (1) example of a problematic programming situation or scenario that the use or implementation of a loop structure could resolve. Justify your response

  Write an application that displays a table of the pythagorea

Write an application that displays a table of the Pythagorean triples for side1, side2 and the hypotenuse, all no larger than 100.

  Build the gui layout of the gamecreate a class called

build the gui layout of the gamecreate a class called pipegameapp.java which will be the main game user interface. the

  Evaluate the amount of a certificate of deposit on maturity

Write a GUI program to compute the amount of a certificate of deposit on maturity -  prepare a program to evaluate the amount of a certificate of deposit on maturity

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