Results 1 to 6 of 6
Thread: JTextPane array
- 11-14-2011, 04:47 AM #1
Member
- Join Date
- Nov 2011
- Posts
- 7
- Rep Power
- 0
JTextPane array
I am trying to create an array of JTextPane and the add different icons to the elements.
So i created the array by doing this:
JTextPane[] normPane = new JTextPane[4];
But now when i try to insert and icon into say for example normPane[0] like this:
normPane[0].insertIcon(icon);
which is how i would insert an icon to a regular JTextPane, i get run time errors
Am I not accessing the arrays in the right manner?
Not quite sure how to fix this.
Would appreciate any help!
-
Re: JTextPane array
Showing the full error message might help as well as some more relevant code.
- 11-14-2011, 05:09 AM #3
Senior Member
- Join Date
- Jul 2009
- Posts
- 1,158
- Rep Power
- 5
Re: JTextPane array
You allocated space for the array to hold 4 text panes, but the array is empty. You need to add text panes to the array:
Java Code:normPane[0] = new JTextPane(); normPane[0].insertIcon(icon);
-
Re: JTextPane array
I assumed this too, but I wanted to get the original poster to post his error messages so he could see for himself that he had a NullPointerException and what that meant, and so he would get in the habit of posting all the pertinent information when asking a question here.
- 11-14-2011, 05:19 AM #5
Member
- Join Date
- Nov 2011
- Posts
- 7
- Rep Power
- 0
- 11-14-2011, 05:56 AM #6
Senior Member
- Join Date
- Jul 2009
- Posts
- 1,158
- Rep Power
- 5
Re: JTextPane array
Sorry about that Pete, I didn't mean for the poster ignore your answer. I often answer questions with advice like that and get annoyed when someone spoonfeeds the answer.
I have a bad habbit of opening multiple windows with the questions I intend to answer. Sometimes, by the time I get around to answer the question other suggestions have already been made :)
Similar Threads
-
JTextPane problem
By mitra in forum AWT / SwingReplies: 2Last Post: 08-04-2011, 07:25 AM -
XML + XSL in JTextpane
By Stijn_vdd in forum AWT / SwingReplies: 0Last Post: 03-10-2011, 02:51 PM -
JTextPane
By xXx BlitzK xXx in forum AWT / SwingReplies: 1Last Post: 12-16-2010, 07:08 AM -
problem in JTextPane
By jperson in forum New To JavaReplies: 4Last Post: 07-07-2010, 04:57 PM -
JTextpane
By Mash in forum AWT / SwingReplies: 1Last Post: 04-15-2010, 06:36 PM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks