Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

NOTE: product and productIO classes have been provided AS STARTING points --- you may need to modify these files slightly. Use product class for product

NOTE: product and productIO classes have been provided AS STARTING points --- you may need to modify these files slightly.

Use product class for product data (2 pts)

Use ProductIO class for to R/W data to file (2 pts)

Use text file products.txt (2 pts)

User server-side validation for all entries (2 pts)

Use or create Java and text files above (2 pts)

image text in transcribedimage text in transcribed

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 add, update, or delete 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.

To edit an existing product, the user selects the Edit link for the product. This displays the Product page with all existing data for the product displayed. Then, the user can edit any entries and click on the Update Product button to update the data for the existing product.

To delete a product, the user selects the Delete link for the product. This displays the Confirm Delete page. Then, if the user confirms the deletion by selecting the Yes button, the product is deleted and the Products page is displayed to reflect the new data. If the user selects the No button, the Products page is displayed.

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 and write the

product data to 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 products price is a valid double value.

If possible, get the Product.java, ProductIO.java, and product.txt files from your instructor or trainer. Otherwise, you can create these files yourself.

The Product class

 package music.business;  
 import java.text.NumberFormat; import java.io.Serializable;  
 public class Product implements Serializable {  
 private Long productId; private String code; private String description; private double price;  
 public Product() {}  
 public Long getId() { return productId;  

}

 public void setId(Long productId) { this.productId = productId;  

}

 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 String getArtistName() { String artistName =  
 description.substring(0, description.indexOf(" - ")); return artistName;  

}

 public String getAlbumName() { String albumName =  
 description.substring(description.indexOf(" - ") + 3); return albumName;  

}

 public void setPrice(double price) { this.price = price;  

}

 public double getPrice() { return price;  

}

 public String getPriceCurrencyFormat() { NumberFormat currency = NumberFormat.getCurrencyInstance(); return currency.format(price);  

}

 public String getImageURL() { String imageURL = "/musicStore/images/" + code + "_cover.jpg"; return imageURL;  

}

 public String getProductType() { return "Audio CD";  

} }

The ProductIO class

package music.data;  
import java.io.*; import java.util.*;  
import music.business.*; public class ProductIO {  
 private static List products = null; private static String filePath = null;  
 // Called once from the controller based on servlet context public static void init(String filePath) {  
 ProductIO.filePath = filePath; }  
 public static List selectProducts() { products = new ArrayList(); File file = new File(filePath); 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) { System.out.println(e); return null;  

} }

public static Product selectProduct(String productCode) { products = selectProducts(); for (Product p : products) {  
 if (productCode != null && productCode.equalsIgnoreCase(p.getCode())) {  

return p; }

}

 return null; }  
public static boolean exists(String productCode) { Product p = selectProduct(productCode); if (p != null) return true; else return false;  

}

private static void saveProducts(List products) { try {  
 File file = new File(filePath); PrintWriter out  
 = new PrintWriter( new FileWriter(file));  
 for (Product p : products) { out.println(p.getCode() + "|"  
 + p.getDescription() + "|" + p.getPrice());  

}

 out.close(); } catch (IOException e) {  
 System.out.println(e); }  

}

public static void insertProduct(Product product) { products = selectProducts(); products.add(product); saveProducts(products);  

}

public static void updateProduct(Product product) { products = selectProducts(); for (int i = 0; i  
 Product p = products.get(i); if (product.getCode() != null  
 && product.getCode().equalsIgnoreCase(p.getCode())) { products.set(i, product);  

} }

 saveProducts(products); }  

public static void deleteProduct(Product product) { products = selectProducts();  
 for (int i = 0; i  
 && product.getCode().equalsIgnoreCase(p.getCode())) { products.remove(i);  

} }

 saveProducts(products); }  

}

A product.txt file that contains four products

8601|86 (the band) - True Life Songs and Pictures|14.95 pf01|Paddlefoot - The first CD|12.95 pf02|Paddlefoot - The second CD|14.95 jr01|Joe Rut - Genuine Wood Grained Finish|14.95  
Project 1 Product Maintenance For this project, you'll create a series of pages that allow you to add, update, or delete a product that's available to the application. (Prerequisites: chapters 1-9) The Index page Preduct Maittenance xX Product Maintenance The Products page Product Maintenance C localhost 8080/productMaintl Products Code Description 8601 36 (the band) True Life Songs and Fictures pto1 Paddlefoot-The first CD pto2 r01 Add Product Price $1495 $1295 $1495 $1495 Edi Edi Eat Edi | Dele |Deen | Dee I Dette Paddiefoot The second c Joe Rut- Genuine Wood Grained Finish The Product page Product Maintenance Product Code: Description: Price e Product View Products Project 1 Product Maintenance For this project, you'll create a series of pages that allow you to add, update, or delete a product that's available to the application. (Prerequisites: chapters 1-9) The Index page Preduct Maittenance xX Product Maintenance The Products page Product Maintenance C localhost 8080/productMaintl Products Code Description 8601 36 (the band) True Life Songs and Fictures pto1 Paddlefoot-The first CD pto2 r01 Add Product Price $1495 $1295 $1495 $1495 Edi Edi Eat Edi | Dele |Deen | Dee I Dette Paddiefoot The second c Joe Rut- Genuine Wood Grained Finish The Product page Product Maintenance Product Code: Description: Price e Product View Products

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Transactions On Large Scale Data And Knowledge Centered Systems Vi Special Issue On Database And Expert Systems Applications Lncs 7600

Authors: Abdelkader Hameurlain ,Josef Kung ,Roland Wagner ,Stephen W. Liddle ,Klaus-Dieter Schewe ,Xiaofang Zhou

2012th Edition

3642341780, 978-3642341786

More Books

Students also viewed these Databases questions

Question

107 MA ammeter 56 resistor ? V voltmeter

Answered: 1 week ago

Question

Generally If Drug A is an inducer of Drug B , Drug B levels will

Answered: 1 week ago

Question

2. Are my sources up to date?

Answered: 1 week ago