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;
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
add a comment |
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
3
You calliter.next()
twice after only one check toiter.hasNext()
. Also, is this a customIterator
? If there's no more elements thennext()
should throwNoSuchElementException
, notIndexOutOfBoundsException
.
– 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
add a comment |
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
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
java iterator
edited Mar 23 at 16:49
Jamie L.
asked Mar 23 at 16:45
Jamie L.Jamie L.
194
194
3
You calliter.next()
twice after only one check toiter.hasNext()
. Also, is this a customIterator
? If there's no more elements thennext()
should throwNoSuchElementException
, notIndexOutOfBoundsException
.
– 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
add a comment |
3
You calliter.next()
twice after only one check toiter.hasNext()
. Also, is this a customIterator
? If there's no more elements thennext()
should throwNoSuchElementException
, notIndexOutOfBoundsException
.
– 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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
3
You call
iter.next()
twice after only one check toiter.hasNext()
. Also, is this a customIterator
? If there's no more elements thennext()
should throwNoSuchElementException
, notIndexOutOfBoundsException
.– 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