java iterator throwing awt-eventqueue exceptionIs Java “pass-by-reference” or “pass-by-value”?How do I efficiently iterate over each entry in a Java Map?What is the difference between public, protected, package-private and private in Java?How do I read / convert an InputStream into a String in Java?When to use LinkedList over ArrayList in Java?How do I generate random integers within a specific range in Java?Iterate through a HashMapHow do I convert a String to an int in Java?Creating a memory leak with JavaException when removing elements from ArrayList?

Capital gains on stocks sold to take initial investment off the table

Cross products/avoiding using your hand for the right hand rule in E and M

How could it be that 80% of townspeople were farmers during the Edo period in Japan?

How was the blinking terminal cursor invented?

Why were the bells ignored in S8E5?

Do we see some Unsullied doing this in S08E05?

How can we delete item permanently without storing in Recycle Bin?

Is it standard to have the first week's pay indefinitely withheld?

Using a Snow jacket for non snow conditions?

How to know the path of a particular software?

Five Powers of Fives Produce Unique Pandigital Number...Solve for X..Tell me Y

A person lacking money who shows off a lot

Why is vowel phonology represented in a trapezoid instead of a square?

How to handle professionally if colleagues has referred his relative and asking to take easy while taking interview

What color to choose as "danger" if the main color of my app is red

Who is frowning in the sentence "Daisy looked at Tom frowning"?

How to continually and organically let my readers know what time it is in my story?

What technology would Dwarves need to forge titanium?

Does a non-singular matrix have a large minor with disjoint rows and columns and full rank?

Canadian citizen who is presently in litigation with a US-based company

Cycling to work - 30mile return

Why is the marginal distribution/marginal probability described as "marginal"?

How long do Aarakocra live?

Why use a retrograde orbit?



java iterator throwing awt-eventqueue exception


Is Java “pass-by-reference” or “pass-by-value”?How do I efficiently iterate over each entry in a Java Map?What is the difference between public, protected, package-private and private in Java?How do I read / convert an InputStream into a String in Java?When to use LinkedList over ArrayList in Java?How do I generate random integers within a specific range in Java?Iterate through a HashMapHow do I convert a String to an int in Java?Creating a memory leak with JavaException when removing elements from ArrayList?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I'm writing a program that adds items to a list and uses an iterator to print all of the items to a JTextArea. I'm a little confused because I thought it was because if there is no next, I'm trying to print a null statement, but doesn't the condition of the while loop check if there's a next object in the iterator?



I know the issue is only with the println, since if I remove it the program works fine. However, is there a way I can access the next object in the iterator as a string?



while (iter.hasNext())

System.out.println(iter.next().toString());
i++;
r = i + " x " + formatter.formatLineItem(iter.next());



Here's the stack trace:



 Exception in thread "AWT-EventQueue-0" 
java.lang.IndexOutOfBoundsException: Index 2 out-of-bounds for length 2
at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64)
at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70)
at java.base/jdk.internal.util.Preconditions.checkIndex(Preconditions.java:248)
at java.base/java.util.Objects.checkIndex(Objects.java:372)
at java.base/java.util.ArrayList.get(ArrayList.java:440)
at Invoice$1.next(Invoice.java:56)
at Invoice$1.next(Invoice.java:48)
at Invoice.format(Invoice.java:80)


It's throwing a "AWT-Eventqueue-0" exception. I'm currently using the println to be able to see what exactly which items are in the iterator because I want to classify each item by name. However, I want to be able to access the string of the item that's in the iterator.










share|improve this question



















  • 3





    You call iter.next() twice after only one check to iter.hasNext(). Also, is this a custom Iterator? If there's no more elements then next() should throw NoSuchElementException, not IndexOutOfBoundsException.

    – Slaw
    Mar 23 at 16:53












  • How can I refer to the same iter.next for both calls?

    – Jamie L.
    Mar 23 at 16:55











  • Store the result in a local variable, then use the variable to reference the element.

    – Slaw
    Mar 23 at 16:55

















0















I'm writing a program that adds items to a list and uses an iterator to print all of the items to a JTextArea. I'm a little confused because I thought it was because if there is no next, I'm trying to print a null statement, but doesn't the condition of the while loop check if there's a next object in the iterator?



I know the issue is only with the println, since if I remove it the program works fine. However, is there a way I can access the next object in the iterator as a string?



while (iter.hasNext())

System.out.println(iter.next().toString());
i++;
r = i + " x " + formatter.formatLineItem(iter.next());



Here's the stack trace:



 Exception in thread "AWT-EventQueue-0" 
java.lang.IndexOutOfBoundsException: Index 2 out-of-bounds for length 2
at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64)
at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70)
at java.base/jdk.internal.util.Preconditions.checkIndex(Preconditions.java:248)
at java.base/java.util.Objects.checkIndex(Objects.java:372)
at java.base/java.util.ArrayList.get(ArrayList.java:440)
at Invoice$1.next(Invoice.java:56)
at Invoice$1.next(Invoice.java:48)
at Invoice.format(Invoice.java:80)


It's throwing a "AWT-Eventqueue-0" exception. I'm currently using the println to be able to see what exactly which items are in the iterator because I want to classify each item by name. However, I want to be able to access the string of the item that's in the iterator.










share|improve this question



















  • 3





    You call iter.next() twice after only one check to iter.hasNext(). Also, is this a custom Iterator? If there's no more elements then next() should throw NoSuchElementException, not IndexOutOfBoundsException.

    – Slaw
    Mar 23 at 16:53












  • How can I refer to the same iter.next for both calls?

    – Jamie L.
    Mar 23 at 16:55











  • Store the result in a local variable, then use the variable to reference the element.

    – Slaw
    Mar 23 at 16:55













0












0








0








I'm writing a program that adds items to a list and uses an iterator to print all of the items to a JTextArea. I'm a little confused because I thought it was because if there is no next, I'm trying to print a null statement, but doesn't the condition of the while loop check if there's a next object in the iterator?



I know the issue is only with the println, since if I remove it the program works fine. However, is there a way I can access the next object in the iterator as a string?



while (iter.hasNext())

System.out.println(iter.next().toString());
i++;
r = i + " x " + formatter.formatLineItem(iter.next());



Here's the stack trace:



 Exception in thread "AWT-EventQueue-0" 
java.lang.IndexOutOfBoundsException: Index 2 out-of-bounds for length 2
at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64)
at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70)
at java.base/jdk.internal.util.Preconditions.checkIndex(Preconditions.java:248)
at java.base/java.util.Objects.checkIndex(Objects.java:372)
at java.base/java.util.ArrayList.get(ArrayList.java:440)
at Invoice$1.next(Invoice.java:56)
at Invoice$1.next(Invoice.java:48)
at Invoice.format(Invoice.java:80)


It's throwing a "AWT-Eventqueue-0" exception. I'm currently using the println to be able to see what exactly which items are in the iterator because I want to classify each item by name. However, I want to be able to access the string of the item that's in the iterator.










share|improve this question
















I'm writing a program that adds items to a list and uses an iterator to print all of the items to a JTextArea. I'm a little confused because I thought it was because if there is no next, I'm trying to print a null statement, but doesn't the condition of the while loop check if there's a next object in the iterator?



I know the issue is only with the println, since if I remove it the program works fine. However, is there a way I can access the next object in the iterator as a string?



while (iter.hasNext())

System.out.println(iter.next().toString());
i++;
r = i + " x " + formatter.formatLineItem(iter.next());



Here's the stack trace:



 Exception in thread "AWT-EventQueue-0" 
java.lang.IndexOutOfBoundsException: Index 2 out-of-bounds for length 2
at java.base/jdk.internal.util.Preconditions.outOfBounds(Preconditions.java:64)
at java.base/jdk.internal.util.Preconditions.outOfBoundsCheckIndex(Preconditions.java:70)
at java.base/jdk.internal.util.Preconditions.checkIndex(Preconditions.java:248)
at java.base/java.util.Objects.checkIndex(Objects.java:372)
at java.base/java.util.ArrayList.get(ArrayList.java:440)
at Invoice$1.next(Invoice.java:56)
at Invoice$1.next(Invoice.java:48)
at Invoice.format(Invoice.java:80)


It's throwing a "AWT-Eventqueue-0" exception. I'm currently using the println to be able to see what exactly which items are in the iterator because I want to classify each item by name. However, I want to be able to access the string of the item that's in the iterator.







java iterator






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 23 at 16:49







Jamie L.

















asked Mar 23 at 16:45









Jamie L.Jamie L.

194




194







  • 3





    You call iter.next() twice after only one check to iter.hasNext(). Also, is this a custom Iterator? If there's no more elements then next() should throw NoSuchElementException, not IndexOutOfBoundsException.

    – Slaw
    Mar 23 at 16:53












  • How can I refer to the same iter.next for both calls?

    – Jamie L.
    Mar 23 at 16:55











  • Store the result in a local variable, then use the variable to reference the element.

    – Slaw
    Mar 23 at 16:55












  • 3





    You call iter.next() twice after only one check to iter.hasNext(). Also, is this a custom Iterator? If there's no more elements then next() should throw NoSuchElementException, not IndexOutOfBoundsException.

    – Slaw
    Mar 23 at 16:53












  • How can I refer to the same iter.next for both calls?

    – Jamie L.
    Mar 23 at 16:55











  • Store the result in a local variable, then use the variable to reference the element.

    – Slaw
    Mar 23 at 16:55







3




3





You call iter.next() twice after only one check to iter.hasNext(). Also, is this a custom Iterator? If there's no more elements then next() should throw NoSuchElementException, not IndexOutOfBoundsException.

– Slaw
Mar 23 at 16:53






You call iter.next() twice after only one check to iter.hasNext(). Also, is this a custom Iterator? If there's no more elements then next() should throw NoSuchElementException, not IndexOutOfBoundsException.

– Slaw
Mar 23 at 16:53














How can I refer to the same iter.next for both calls?

– Jamie L.
Mar 23 at 16:55





How can I refer to the same iter.next for both calls?

– Jamie L.
Mar 23 at 16:55













Store the result in a local variable, then use the variable to reference the element.

– Slaw
Mar 23 at 16:55





Store the result in a local variable, then use the variable to reference the element.

– Slaw
Mar 23 at 16:55












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55316061%2fjava-iterator-throwing-awt-eventqueue-exception%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55316061%2fjava-iterator-throwing-awt-eventqueue-exception%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript