Write a complete java program called parser

Assignment Help JAVA Programming
Reference no: EM13865150

Write a complete Java program called Parser that gets a comma-delimited String of integers (eg "4,8,16,32,...") from the user at the command line and then converts the String to an ArrayList of Integers using the wrapper class) with each element containing one of the input integers in sequence.

Finally, use a for loop to output the integers to the command line, each on a separate line. 

import java.util.ArrayList; import java.util.Iterator; import java.util.Scanner;

public class probset5a { 

    public static void main(String[] args) { 

        ArrayList mylist = new ArrayList<>(); 

        Scanner in = new Scanner(System.in); 

        System.out.println("Enter Input String : "); 

        String inputString = in.nextLine(); 

 

        while(true) { 

            int index = inputString.indexOf(","); 

                if(index == -1) { 

                    mylist.add(Integer.parseInt(inputString)); 

                    break; 

                } 

                mylist.add(Integer.parseInt(inputString.substring(0, index))); 

                inputString = inputString.substring(index + 1); 

        } 

        System.out.println("Entered Integers are : "); 

        Iterator i = mylist.iterator(); 

            for(; i.hasNext()

        ;  )  { 

                System.out.println(i.next()); 

            } } }

Reference no: EM13865150

Questions Cloud

How we can get an electric field at an arbitrary point : Provide a brief verbal explanation of each step in your solution. State where the formulas are coming from, and why they are applicable here - Explain in words how we can get an electric field at an arbitrary point.
Outline the implentation of the program : Outline the implentation of the program
The exchange rate difficulties experienced by countries : Did the exchange rate difficulties experienced by countries under the ERM strengthen or weaken the arguments for progressing to a single European currency?
Compare and contrast the national interests : Compare and contrast the national interests
Write a complete java program called parser : Write a complete Java program called Parser that gets a comma-delimited String of integers  (eg "4,8,16,32,...") from the user at the command line and then converts the String to an ArrayList of Integersusing
That just some of the members of a common market like the e : Assume that just some of the members of a common market like the EU adopt full economic and monetary union, including a common currency. What are the advantages and disadvantages to those members joining the full EMU and to those not?

Reviews

Write a Review

JAVA Programming Questions & Answers

  Recursive factorial program

Write a class Array that encapsulates an array and provides bounds-checked access. Create a recursive factorial program that prompts the user for an integer N and writes out a series of equations representing the calculation of N!.

  Hunt the wumpus game

Reprot on Hunt the Wumpus Game has Source Code listing, screen captures and UML design here and also, may include Javadoc source here.

  Create a gui interface

Create GUI Interface in java programing with these function: Sort by last name and print all employees info, Sort by job title and print all employees info, Sort by weekly salary and print all employees info, search by job title and print that emp..

  Plot pois on a graph

Write a JAVA program that would get the locations of all the POIs from the file and plot them on a map.

  Write a university grading system in java

University grading system maintains number of tables to store, retrieve and manipulate student marks. Write a JAVA program that would simulate a number of cars.

  Wolves and sheep: design a game

This project is designed a game in java. you choose whether you'd like to write a wolf or a sheep agent. Then, you are assigned to either a "sheep" or a "wolf" team.

  Build a graphical user interface for displaying the image

Build a graphical user interface for displaying the image groups (= cluster) in JMJRST. Design and implement using a Swing interface.

  Determine the day of the week for new year''s day

This assignment contains a java project. Project evaluates the day of the week for New Year's Day.

  Write a java windowed application

Write a Java windowed application to do online quiz on general knowledge and the application also displays the quiz result.

  Input pairs of natural numbers

Java program to input pairs of natural numbers.

  Create classes implement java interface

Interface that contains a generic type. Create two classes that implement this interface.

  Java class, array, link list , generic class

These 14 questions covers java class, Array, link list , generic class.

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