Question

In: Computer Science

XML and JAVA Write a Java program that meets these requirements. It is important you follow...

XML and JAVA

Write a Java program that meets these requirements. It is important you follow these requirements closely.

• Create a NetBeans project named LastnameAssign1. Change Lastname to your last name. For example, my project would be named NicholsonAssign1.

• In the Java file, print a welcome message that includes your full name.

• The program should prompt for an XML filename to write to o The filename entered must end with .xml and have at least one letter before the period. If it does not, print a warning and prompt again. Keep nagging the user until a proper file name is entered.

• Prompt the user for 3 integers.

o The three integers represent red, blue, and green channel values for a color. o Process the numbers according to the instructions below

o Once you have handled the 3 input values, prompt the user again o Keep prompting the user for 3 integers until the user enters the single word DONE

o Reading input should not stop for any reason except for when the user enters DONE.

o The user will not mix DONE and the numbers. The user will either enter 3 integers OR the word DONE

• Once the user is done, open the filename entered in the first step and output the data.

o If no numbers were entered, then do not open the file for writing. Simply print a message that no data was entered.

o When 1 or more colors are entered, write out the XML data for each color. See below for the format.

o Sometimes users may enter integer values that are larger than 255 or less than 0. Values like this will need to be “clipped”, that is, converted to good values. For example, if the user enters 300 for red, then the actual red channel value will be 255. If the user entered -10 for the blue channel, then the actual blue channel value will be 0.

You should follow the sample below and your program should exhibit the same behavior. For full credit, your generated XML files must pass validation with NetBeans Check XML.

GENERAL REQUIREMENTS

All Java-related assignments will have the requirements below. While you may find them limiting, their purpose is to help you adopt good programming habits.

1. You should not have one, ginormous main() function. Your program should be modular, that is, define several (more than 2) meaningful functions in addition to main().

2. All functions should have a comment describing their purpose.

3. You may not use the System.exit() function   
4. You must include a comment at the top of your .java file in this format:

/*******************

John Nicholson

CSCI 3020 Section 04

Fall 2019

Assignment 1
This program does ...

*******************/

You should obviously change the name to your name, the section to your section, and write a real description of the program. If this comment is missing, you will automatically lose 50% of the points on the assignment. Your assignment will not be regraded if you do not put in the correct comment.
XML

Solutions

Expert Solution

Code

import java.util.List;

import java.util.Scanner;

import java.util.ArrayList;

import java.io.File;

import java.io.StringWriter;

import javax.xml.bind.JAXBContext;

import javax.xml.bind.JAXBException;

import javax.xml.bind.Marshaller;

public class ProgAssign1

{

    static private class RGB

    {

        public int Red;

        public int Green;

        public int Blue;

        //Correct the user input if required.

        public int RectifyInput(int number){

            if(number < 0)

                return 0;

            if(number > 255)

                return 255;

            

            return number;

        }

    }

    private static String _fileName;

    private static List<RGB> _userInputs;

    private static Scanner _input;

    //Function to validate the user entered file name.

    public static Boolean ValidateFileName(String fileName) {

        if(fileName == null)

            return false;

        var nameParts = fileName.split("\\.");

        

        if(nameParts.length < 2)

            return false;

        if(!nameParts[nameParts.length - 1].equals("xml"))

            return false;

        if(!nameParts[nameParts.length - 2].matches("[a-zA-Z0-9]+"))

            return false;

        _fileName = fileName;

        return true;

    }

    //Function to get file name from user.

    public static void GetFileName() {

        while(true)

        {

            System.out.print("Enter a file name ending with .xml: ");

            String name = _input.nextLine();

            if(ValidateFileName(name))

                break;

            else

                System.out.println("Invalid file name");

        }

    }

    //Function to get all the user inputs.

    public static void GetUserInput() {

        _userInputs = new ArrayList<RGB>();

        String r, g, b;

        while(true)

        {

            System.out.println("Enter 3 integers");

            r = _input.nextLine();

            if(r.equals("DONE")) break;

            g = _input.nextLine();

            if(g.equals("DONE")) break;

            b = _input.nextLine();

            if(b.equals("DONE")) break;

            var color = new RGB();

            color.Red = color.RectifyInput(Integer.parseInt(r));

            color.Green = color.RectifyInput(Integer.parseInt(g));

            color.Blue = color.RectifyInput(Integer.parseInt(b));

            _userInputs.add(color);  

        }

    }

    //Write user input to File

    private static void WriteToFile(){

        if(_userInputs.size() == 0)

        {

            System.out.println("No data was entered!");

            return;

        }

        JAXBContext jaxbContext = JAXBContext.newInstance(RGB.class);

        Marshaller jaxbMarshaller = jaxbContext.createMarshaller();

        jaxbMarshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, Boolean.TRUE);

        File file = new File(_fileName);

        jaxbMarshaller.marshal(_userInputs, file);

    }

    public static void main(String[] args) {

        System.out.println("Your Name");

        _input = new Scanner(System.in);

        GetFileName();

        GetUserInput();

        WriteToFile();

        System.out.println("Done.");

        _input.close();

    }

}


Related Solutions

Directions: You are to write a C++ program that meets the instruction requirements below. Deliverables: ·...
Directions: You are to write a C++ program that meets the instruction requirements below. Deliverables: · Your C++ source code file. (The file with the .CPP extension).No other files will be accepted. A screenshot of your program running. Program Instructions: Consider the following incomplete C++ program: #include int main() { … } 1. Write a statement that includes the header files fstream, string, and iomanip in this program. 2. Write statements that declare inFile to be an ifstream variable and...
Write a C program that meets the following requirements. Uses a while loop to display the...
Write a C program that meets the following requirements. Uses a while loop to display the first 10 natural numbers (on one row, with a tab separating each number) Uses a while loop to find the sum of the second set of 10 natural numbers. Reads a user entry and displays all the natural numbers up to the user entry (on a column list with a new line separating each number). Finds and displays the sum of all natural numbers...
Using Python, write a program named hw3b.py that meets the following requirements: Welcome the user to...
Using Python, write a program named hw3b.py that meets the following requirements: Welcome the user to Zion's Pizza Restaurant and ask the user how many people are in their dinner group. If the answer is more than eight (8), print a message saying they'll have to wait for a table. Otherwise, report that their table is ready and take their order. Assume the client orders one pizza, and ask what he/she would like on their pizza, include a loop that...
Using Python, write a program that meets the following requirements: Make a list called sandwich_orders and...
Using Python, write a program that meets the following requirements: Make a list called sandwich_orders and fill it with the names of various sandwiches. Make an empty list called finished_sandwiches. Loop through the list of sandwich orders and spring a message for each order such as "I am working on your tuna sandwich" As each sandwich is made, move it to the list of finished sandwiches. After all the sandwiches have been made, print a message listing each sandwich that...
Using Python, write a program named hw3a.py that meets the following requirements: Create a dictionary called...
Using Python, write a program named hw3a.py that meets the following requirements: Create a dictionary called glossary. Have the glossary include a list of five (5) programing words you have learned in chapters 4-6. Use these words as keys to your dictionary. Find the definition of these words and use them as the values to the keys. Using a loop, print each word and its meaning as neatly formatted output. Create three dictionaries called person. Have each of the person...
Write a program that implements the follow disk scheduling algorithms. You can use C or Java...
Write a program that implements the follow disk scheduling algorithms. You can use C or Java for this assignment. FCFS SSTF SCAN C-SCAN LOOK C-LOOK Your program will service a disk with 5000 cylinders (numbered 0 to 4999). Your program will generate a random initial disk head position, as well as a random series of 1000 cylinder requests, and service them using each of the 6 algorithms listed above. Your program will report the total amount of head movement required...
Write a javascript program according to the follow requirements: Create a function that converts Fahrenheit to...
Write a javascript program according to the follow requirements: Create a function that converts Fahrenheit to Celsius. It takes a single argument which represents degrees in Fahrenheit. It converts it and returns the degrees in Celsius. Create another function that converts Celsius to Fahrenheit. It takes a argument in Celsius and returns the degrees in Fahrenheit. Implement the function convert(isFtoC, from, to) below. It takes the following three arguments: isFtoC: a boolean that is true if degrees must be converted...
I need to update this program to follow the these requirements please and thank you :...
I need to update this program to follow the these requirements please and thank you : Do not use packages Every class but the main routine class must have a toString method . The toString method for Quadrilateral should display its fields: 4 Points. All instance variables should be declared explicitly private . Area incorrect : enter points no: 1 1 3 enter points no: 2 6 3 enter points no: 3 0 0 enter points no: 4 5 0...
Write the program in java Write a program that does basic encrypting of text. You will...
Write the program in java Write a program that does basic encrypting of text. You will ask the user the filename of a text file which contains a few sentences of text. You will read this text file one character at a time, and change each letter to another one and write out to an output file. The conversion should be done a -> b, b->c , … z->a, A->B, B->C, …. Z->A. This means just shift each letter by...
The RN to BSN program at Grand Canyon University meets the requirements for clinical competencies as...
The RN to BSN program at Grand Canyon University meets the requirements for clinical competencies as defined by the Commission on Collegiate Nursing Education (CCNE) and the American Association of Colleges of Nursing (AACN), using nontraditional experiences for practicing nurses. These experiences come in the form of direct and indirect care experiences in which licensed nursing students engage in learning within the context of their hospital organization, specific care discipline, and local communities. Note: The teaching plan proposal developed in...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT