Cis-604 term project solution | Computer Science homework help

For this project milestone, you’ll create a series of pages that allow you to display and add products that are available to the application.

The Index page

 

The Products page

 

The Product page

 

 

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

 

 

Calculate the price of your order

Choose an academic level, add pages, and the paper type you want.
To reduce the cost of our essay writing services, select the lengthier deadline.
We can't believe we just said that to you.

550 words
We'll send you the first draft for approval by September 11, 2018 at 10:52 AM
Total price:
$26
The price is based on these factors:
Academic level
Number of pages
Urgency
Basic features
  • Free title page and bibliography
  • Unlimited revisions
  • Plagiarism-free guarantee
  • Money-back guarantee
  • 24/7 support
On-demand options
  • Writer’s samples
  • Part-by-part delivery
  • Overnight delivery
  • Copies of used sources
  • Expert Proofreading
Paper format
  • 275 words per page
  • 12 pt Arial/Times New Roman
  • Double line spacing
  • Any citation style (APA, MLA, Chicago/Turabian, Harvard)

Our guarantees

Delivering a high-quality product at a reasonable price is not enough anymore.
That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.

Money-back guarantee

You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.

Read more

Zero-plagiarism guarantee

Each paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.

Read more

Free-revision policy

Thanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.

Read more

Privacy policy

Your email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.

Read more

Fair-cooperation guarantee

By sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.

Read more

Why is Purdue Papers the Most Helpful Essay Writing Service for You?

  1. Custom-written and plagiarism-free papers: Our authors create their work from scratch. Before presenting them to clients, we routinely verify them for signs of plagiarism. Our quality assurance group also double-checks and fixes any grammatical errors, assuring that all of our authors adhere to the same standards of writing.
  2. The significance of timely delivery cannot be overstated, and we consistently strive to meet or exceed our clients' deadlines. Regardless of the short time frame, you can count on our writers to get the job done. We always have a team of writers ready to go, even if the deadline is only six hours away.
  3. Customer Satisfaction: Our customer service representatives are the best in the business and have a wealth of knowledge in dealing with clients. All our customer service representatives are trained to listen and reply promptly until you are satisfied with their service. To ensure you're happy, our expert writers will strictly follow the criteria to generate a special report. Our customer service may be contacted by chat, email, or phone. In addition, we provide round-the-clock assistance to all of our clients.
  4. Confidentiality: Our systems are safe, and your information is always protected. We're constantly looking for new facts when it comes to finishing your work. We use a safe and secure payment channel. Since our ordering process is completely anonymous, you don't have to provide any credit card information to place a purchase with us.
  5. Highly Trained Authors: Our writers have received extensive training and are committed to delivering only the best papers. They are fluent in APA, MLA, HARVARD, IEEE, CHICAGO, and AMA referencing styles. To meet your expectations, our skilled writers always pay close attention to your instructions.
  6. Lowered prices: We have set prices that are already discounted. Our prices are the best and affordable for all our esteemed customers.

Let Professionals Take Care of your Academic Paper