473,806 Members | 2,707 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Exception in thread "main" java.util.NoSuc hElementExcepti on

11 New Member
Each time I run the ProgTwo program, it displays:

1. Display one product
2. Display all products
3. Add a new CD
6. Exit

Enter your choice: Exception in thread "main" java.util.NoSuc hElementExcepti on
at java.util.Scann er.throwFor(Sca nner.java:838)
at java.util.Scann er.next(Scanner .java:1461)
at java.util.Scann er.nextInt(Scan ner.java:2091)
at java.util.Scann er.nextInt(Scan ner.java:2050)
at ProgTwo.main(Pr ogTwo.java:31)

What exactly does "Exception in thread "main" java.util.NoSuc hElementExcepti on" mean and how can I fix it so my program runs properly?

Expand|Select|Wrap|Line Numbers
  1. import java.io.*;
  2. import java.text.NumberFormat;
  3.  
  4. public class Product
  5. {
  6.    private String name;
  7.     private double price;
  8.     private int idNum;
  9.     private int quantity;
  10.  
  11.     public Product (int id, String title, double cost, int total) 
  12.     {
  13.         id = idNum;
  14.         name = title;
  15.         price = cost;
  16.         quantity = total;
  17.     }
  18.  
  19.    //-----------------------------------------------------------------
  20.    //  Returns the product's ID number.
  21.    //-----------------------------------------------------------------
  22.  
  23.     public int getID()
  24.     {
  25.        return idNum;
  26.     }
  27.  
  28.    //-----------------------------------------------------------------
  29.    //  Returns the product's name.
  30.    //-----------------------------------------------------------------
  31.  
  32.     public String getName()
  33.     {
  34.        return name;
  35.     }
  36.  
  37.  
  38.    //-----------------------------------------------------------------
  39.    //  Returns the product's price.
  40.    //-----------------------------------------------------------------
  41.  
  42.     public double getPrice()
  43.     {
  44.        return price;
  45.     }
  46.  
  47.    //-----------------------------------------------------------------
  48.    //  Returns the quantity in inventory.
  49.    //-----------------------------------------------------------------
  50.  
  51.     public int getQuantity()
  52.     {
  53.        return quantity;
  54.     }
  55.  
  56.    //-----------------------------------------------------------------
  57.    //  Returns a printablle version of the product object.
  58.    //-----------------------------------------------------------------
  59.  
  60.    public String toString()
  61.    {
  62.       NumberFormat fmt = NumberFormat.getCurrencyInstance();
  63.  
  64.       String description;
  65.  
  66.       description = fmt.format(price) + "\t" + quantity + "\t";
  67.       description += idNum + "\t" + name;
  68.  
  69.       return description;  
  70.    }
  71. }
Expand|Select|Wrap|Line Numbers
  1. import java.text.NumberFormat;
  2.  
  3. public class ProductCollection
  4. {
  5.    private Product[] collection;
  6.    private int count;
  7.     private double totalCost;
  8.  
  9.    //-----------------------------------------------------------------
  10.    //  Constructor: Creates an initially empty collection.
  11.    //-----------------------------------------------------------------
  12.    public ProductCollection ()
  13.    {
  14.       collection = new Product[100];
  15.       count = 0;
  16.         totalCost = 0.0;
  17.    }
  18.  
  19.    //-----------------------------------------------------------------
  20.    //  Adds a product to the collection.
  21.    //-----------------------------------------------------------------
  22.  
  23.    public void addProduct (int prodID, String prodName, double unitPrice, int prodQty)
  24.    {
  25.       if (count == collection.length)
  26.          increaseSize();
  27.  
  28.       int index = findProduct(prodID);
  29.  
  30.       if (index == -1)
  31.       {
  32.           collection[count] = new Product (prodID, prodName, unitPrice, prodQty);
  33.           totalCost += unitPrice;
  34.           count++;
  35.       }
  36.       else
  37.           System.out.println("Product was not added, a product having the ID number " + prodID 
  38.                             + " was found.");
  39.    }
  40.  
  41.    //-----------------------------------------------------------------
  42.    //  Increases the size of the product to the collection.
  43.    //-----------------------------------------------------------------
  44.  
  45.     private void increaseSize ()
  46.    {
  47.       Product[] temp = new Product[collection.length * 2];
  48.  
  49.       for (int prod = 0; prod < collection.length; prod++)
  50.          temp[prod] = collection[prod];
  51.  
  52.       collection = temp;
  53.     }
  54.  
  55.    //-----------------------------------------------------------------
  56.    //  Finds product from collection.
  57.    //-----------------------------------------------------------------
  58.  
  59.     public int findProduct(int prodID)
  60.    {
  61.        int index = -1;
  62.       for (int i = 0; i < count; i++)
  63.       if (collection[i].getID() == prodID)
  64.           index = i;
  65.       return index;
  66.     }
  67.  
  68.    //-----------------------------------------------------------------
  69.    //  Deletes product from the collection.
  70.    //-----------------------------------------------------------------
  71.  
  72.     public void deleteProduct(int prodID)
  73.     {
  74.        int index = findProduct(prodID);
  75.  
  76.         if (index > -1)
  77.       {
  78.             for (int i = index; i < count; i++)
  79.            {
  80.                collection[i] = collection[i+1];
  81.                count--;
  82.             }
  83.         }
  84.         else System.out.println("A product having the ID number " + prodID 
  85.                             + " was not found.");
  86.     }
  87.  
  88.    //-----------------------------------------------------------------
  89.    //  Displays product from the collection.
  90.    //-----------------------------------------------------------------
  91.  
  92.     public void displayProduct(int prodID)
  93.     {
  94.       int index = findProduct(prodID);
  95.       if (index > -1)
  96.          System.out.println(collection[index]);
  97.       else
  98.          System.out.println("A product having the ID number " + prodID 
  99.                             + " was not found.");    
  100.     }
  101.  
  102.    //-----------------------------------------------------------------
  103.    //  Returns a report describing the Product collection.
  104.    //-----------------------------------------------------------------
  105.  
  106.        public String createOutputFile()
  107.    {
  108.       String data = "";
  109.       for (int i = 0; i < count; i++)
  110.       {
  111.           data += collection[i].getID() + ",";
  112.           data += collection[i].getName() + ",";
  113.           data += collection[i].getPrice() + ",";
  114.           data += collection[i].getQuantity() + ",\n";
  115.       }
  116.       return data;
  117.    }
  118.  
  119.    public String toString()
  120.    {
  121.       NumberFormat fmt = NumberFormat.getCurrencyInstance();
  122.  
  123.       String report = "-------------------------------------------\n";
  124.       report += "My Product Collection\n\n";
  125.  
  126.       report += "Number of products: " + count + "\n";
  127.       report += "Total cost: " + fmt.format(totalCost) + "\n";
  128.       report += "Average cost: " + fmt.format(totalCost/count);
  129.  
  130.       report += "\n\nCD List:\n\n";
  131.  
  132.       for (int cd = 0; cd < count; cd++)
  133.          report += collection[cd].toString() + "\n";
  134.  
  135.       return report;
  136.    }
  137.  
  138. }
  139.  
Expand|Select|Wrap|Line Numbers
  1. import java.util.Scanner;
  2. import java.io.*;
  3.  
  4. public class ProgTwo
  5. {
  6.    public static void main (String[] args) throws FileNotFoundException, IOException
  7.    {
  8.       Scanner scan = new Scanner(new File("productin.txt"));
  9.       ProductCollection data = new ProductCollection ();
  10.       String name = null;
  11.       double price = 0.0;
  12.       int idNum = 0, quantity = 0, input = 0;
  13.  
  14.         while (scan.hasNextLine())
  15.       {
  16.          scan.useDelimiter(",");
  17.             idNum = scan.nextInt();
  18.          name = scan.next();
  19.          price = scan.nextDouble();
  20.          quantity = scan.nextInt();
  21.          scan.nextLine();
  22.          data.addProduct (idNum, name, price, quantity);
  23.       }
  24.          do
  25.          { 
  26.               System.out.println("1. Display one product");
  27.                System.out.println("2. Display all products");
  28.             System.out.println("3. Add a new product");
  29.             System.out.println("6.  Exit");
  30.             System.out.print("\nEnter your choice: ");
  31.             input = scan.nextInt();
  32.  
  33.             switch (input)
  34.             {
  35.         case 1:  System.out.print("Enter the ID number of the product to display: " );
  36.                                      idNum = scan.nextInt();
  37.                                      data.displayProduct(idNum);
  38.              break; 
  39.         case 2:  System.out.println (data);
  40.                      break; 
  41.                         case 3:  System.out.print("Enter the ID number: ");                                
  42.                         idNum =scan.nextInt();
  43.                         System.out.print("Enter the name: " );
  44.                         name = scan.nextLine();
  45.                         System.out.print("Enter the price: " );
  46.                         price = scan.nextDouble();
  47.                         System.out.print("Enter the quantity: ");
  48.                         quantity = scan.nextInt();
  49.                         data.addProduct(idNum, name, price, quantity);
  50.                         System.out.println(data);                   
  51.                         break;
  52.             }
  53.          } while (input != 6);
  54.  
  55.       FileWriter fw = new FileWriter("productout.txt");
  56.       BufferedWriter bw = new BufferedWriter(fw);
  57.       PrintWriter pw = new PrintWriter(bw);
  58.  
  59.       pw.println(data.createOutputFile());
  60.       pw.close();
  61.     }
  62. }
Apr 16 '10 #1
6 3070
Dheeraj Joshi
1,123 Recognized Expert Top Contributor
How does your input looks like?

I suspect your program tries to fetch value of choice from input string, and you have not mentioned the input.

Regards
Dheeraj Joshi
Apr 16 '10 #2
monkey0525
11 New Member
The input is an integer whose value is zero. My program doesn't allow me to add any information in, it just displays the above message.
Apr 16 '10 #3
Dheeraj Joshi
1,123 Recognized Expert Top Contributor
Put some debug statements and display the value of all variable in ProgTwo class line number 32.

Check the output of debug statement and verify whether the input is correct on not.

Regards
Dheeraj Joshi
Apr 16 '10 #4
monkey0525
11 New Member
Pardon my ignorance, but how can I do that?
Apr 16 '10 #5
Dheeraj Joshi
1,123 Recognized Expert Top Contributor
Put some print statements. Basically that is just to make sure that, you are able to
fetch all the values.

If you are using some IDE like netbeans or eclipse, please debug the code and see the local variable values as scanner picks the data.

Regards
Dheeraj Joshi
Apr 16 '10 #6
jkmyoung
2,057 Recognized Expert Top Contributor
Ah! You're using the same scanner that you used on the file to try and get user output, correct? Of course it throws an error, because we're already done reading the file; but that's not where you want to read from.

Create a new scanner:
Expand|Select|Wrap|Line Numbers
  1. Scanner userInput = new Scanner(System.in)
  2. ...
  3. System.out.print("\nEnter your choice: "); 
  4. input = userInput.nextInt(); 
Apr 16 '10 #7

Sign in to post your reply or Sign up for a free account.

Similar topics

0
3014
by: Phillip Montgomery | last post by:
Hello all; I'm trying to debug an issue with a java script called, SelectSockets. It appears to be a fairly common one found on the web. I downloaded the SGI Java v1.4.1 installation from SGI's webpage and installed it using SGI's swmgr application. The installation was very straight forward and there were no errors when I installed the package. Then I ran /usr/java2/bin/javac SelectSockets.java to make the SelectSockets.class file.
1
9126
by: Andy Howells | last post by:
Can anybody help me on this? I am getting the below error but have not got a clue why. The file in my classpath eing used has the class that it says is not defined. Any ideas? I am running java version 1.4.0 and WMQ Series version 5.3 with CSD04. Exception in thread "main" java.lang.NoClassDefFoundError: com/ibm/mq/server/MQSESSION at com.ibm.mq.MQSESSIONServer.getMQSESSION(MQSESSIONServer.java:67) at...
1
1791
by: GHKASHYAP | last post by:
Hi this is the exception i am getting when i am trying to run this application: Exception in thread "main" java.lang.NullPointerException thanks in advance.. package com.inventive.StockMarketTrading; import java.awt.BorderLayout; import java.awt.Dimension; import java.awt.event.ActionEvent;
3
6447
by: Ananthu | last post by:
Hi This is my codings in order to access mysql database from java. Codings: import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.Statement;
4
16729
by: HaifaCarina | last post by:
here's the complete lines of errors.. Exception in thread "main" java.util.NoSuchElementException at java.util.StringTokenizer.nextToken(StringTokenizer.java:332) at CsvTest.readFile(CsvTest.java:26) at Trial.main(Trial.java:24) I have no idea what to change here because I don't know what is wrong..please help me out... import java.io.*; import java.util.*;
9
3290
by: tiyaramunna | last post by:
I am trying to configure my system with Java program just to practice on the coding....when i compile a test.java program i am able to see the class file but i cant run the program ... I am getting the following error Exception in thread "main" java.lang.NoClassDefFoundError: test Caused by: java.lang.ClassNotFoundException: test at java.net.URLClassLoader$1.run(Unknown Source) at...
4
14742
by: jmitch89 | last post by:
I don't why I get this error: Exception in thread "main" java.lang.NoClassDefFoundError The statement below works just fine: java -cp "appframework-1.0.3.jar;swing-worker-1.1.jar";CurrentStrobe.jar com.visionpro.currentstrobe.CurrentStrobeApp However, the statement below produces the error: java -cp "appframework-1.0.3.jar;swing-worker-1.1.jar" -jar CurrentStrobe.jar Exception in thread "main"...
1
13749
by: jimgym1989 | last post by:
I dont get it..why is the error: Exception in thread "main" java.util.InputMismatchException this is my code /** * @(#)textFileRead.java * * * @author * @version 1.00 2008/10/17 */
3
7664
by: ohadr | last post by:
hi, i get Exception in thread "main" java.lang.NullPointerException when i run my application. the exact error is: "Exception in thread "main" java.lang.NullPointerException at sortmergejoin.MergeJoin.Field(MergeJoin.java:204) at sortmergejoin.MergeJoin.SMJoin(MergeJoin.java:84) at sortmergejoin.MergeJoin.<init>(MergeJoin.java:34) at sortmergejoin.Main.main(Main.java:24) Java Result: 1"
1
6761
by: onlinegear | last post by:
HI i am writing this for college i know i have loads of combo boxes with nothing in the i havent got that far yet. but every time i run this is comes up with this erro run: Exception in thread "main" java.lang.NullPointerException at java.awt.Container.addImpl(Container.java:1041) at java.awt.Container.add(Container.java:365) at orderingsystem.OrderingSystem.<init>(OrderingSystem.java:261) at...
0
9599
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10624
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10371
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
7650
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6877
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5546
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5684
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3853
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3010
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.