A Java Swing text component that can be marked up with attributes that are represented graphically.

learn more… | top users | synonyms

0
votes
2answers
168 views

How can I add hyperlinks to a JTextPane without html?

I have a JTextPane with a StyledDocument "doc" and I want when I doc.isertString(doc.getLength(), "http://www.google.com", attrs) the JTextPane to show a hyperlink that can be clicked. I put ...
-1
votes
3answers
157 views

Java - How can I add make a JTextPane split in 3 colums?

I'm working on a chat client and I have this problem: What I want to do is divide the JTextPane in 3 colums so that in the first one it puts out the name of the user, in the second the message and the ...
1
vote
2answers
176 views

changing the color of a setText() method using a JTextPane

I have tried alot of different things yet i can't seem to figure out how to do it. I have read about 40 pages on how to set the color of ALL the text in the pane, but not one specific bit. I have some ...
0
votes
1answer
41 views

Trying to get the start and end point of each line within a text pane

Trying to get the start and end point of each line within a text pane: The text pane contains (note target is the end of each line not including the blank space line): (blank space line) ...
1
vote
2answers
134 views

Changing the font of a text in a JTextPane dynamically

I want to change the certain texts written on a JTextPane dynamically. I have a String array containing the words which should be changed String ListMethod [] = {"forward", "backward", "left", ...
2
votes
1answer
294 views

How to center text and a JComponent in a JTextPane vertically?

Currently it looks so What to do so that it looks so? Below is my code: JFrame f = new JFrame(); JTextPane textPane = new JTextPane(); JTextField component = new JTextField(" ...
1
vote
1answer
130 views

Resize the line of a JTextPane when another one's line is resized

I have one JTextPane (1) and another one by it's side (2). I've synched them and if a line is entered in (2), a line get's entered in (1), but when I insert an image(24px), (2) resizes the line length ...
0
votes
1answer
66 views

How to make the text clickable in Jtextpane?

Basically I am implementing a search function in an ontology. So when I enter a keyword to search, it is searched in the ontology and the corresponding results are displayed in JTextpane. Now what I ...
1
vote
2answers
147 views

How to get the number of lines from a jtextpane

Is there a way of "extracting" the number of lines from a filled with text jtextpane? If there is, does it work if some of the lines are due to text wrapping?
3
votes
1answer
66 views

How to insert text into a Document without triggering insertUpdate()

I want to create a Swing JTextPane that takes action when the user types text into it. But I also want to be able to alter the text in that pane without it treating that alteration as a user typing. ...
0
votes
0answers
53 views

How to Create component in java using TextPane or JtextArea like Netbeans OUTPUT windows

I am developing log collecting application java swing now i am using JTextArea for display the logs (like text). My problem is after 15 mins JTextArea is hanging. I want component in java to ...
0
votes
0answers
174 views

Java Spell Checking a Text Pane with Jazzy [closed]

I have recently been working on a Java project that implements a spell checker. I need to spell check a JTextPane. I did some research and found an open source library called Jazzy, which seems to do ...
3
votes
2answers
753 views

jeditorPane javascript and css support

I am working on Swing using JEditorPane but its not supporting the java script or some advanced tag like etc and not supporting the Color , font style size etc. Is there any solution so that jeditor ...
3
votes
1answer
1k views

Java string replaceAll()

I've been wondering if for example: JTextPane chatTextArea = new JTextPane(); s.replaceAll(":\\)", emoticon()); public String emoticon(){ chatTextArea.insertIcon(new ...
0
votes
1answer
106 views

JTextPane resizing on wordwrap

I'm creating a chat program, similar to IRC. With my client though, I have the problem that when text is added to a JTextPane (using a GridBagLayout), it resizes instead of wordwraps. Well, it ...
0
votes
0answers
143 views

Inserting text into a JTextPane without a newline

For awhile now, I've been trying to insert a character, sorta like auto-completion in Eclipse into a JTextPane with the following code: import java.awt.BorderLayout; import java.awt.Dimension; import ...
0
votes
1answer
285 views

JTextPane Syntax-Highlighting

I'm currently working on a really simple IDE meant for C programming in Java. And by simple I mean it has minor code-guessing (Similar to Eclipse), some minor auto-completion (Once again, think ...
0
votes
4answers
201 views

Insert java variable in html-styled jTextPane

I'm building a Java Swing interface in which I have a HTML-styled jTextPane, which I use for displaying the current system status. I want to be able to display a few Strings (which may change over ...
0
votes
1answer
175 views

JTextPane word wrapping issue

I'm using JTextPane in an application for wiki source editing. I've added a simple spell checking functionality to it which underlines mispelled words by changing character attributes to a different ...
1
vote
1answer
117 views

Does serializing JTextPane's Document, serializes JTextPane's listeners?

I'm serializing a JTextPane's Document in order to persist it's styled text to database. I have a caretListener attached to the JTextPane and I'm wondering if serializing this Document serializies the ...
0
votes
1answer
285 views

How to get JTextPane line count

So in JTextArea there is a getLineCount() is there something similar for JTextPane, because I could find anything. Perhaps there is a different way of obtaining that? I want to get the number of ...
-1
votes
1answer
105 views

JTextPane and HTML

I am making a text editor roughly like a microsoft word and I am using a textpane with HTML. After doing some research I found a way to apply html to a highlighted section on using StyleConstants and ...
0
votes
2answers
248 views

Cannot get text from JTextPane

So I have a JTextPane, and I have a method that returns a String containing the text in the JTextPane. I have been trying to fix this for weeks. The getText() method returns a blank line. I tried ...
2
votes
1answer
52 views

Java apply HTML to a selected text

I wanted to know if there is a way that I can apply basic HTML to a text pane or text editor using a Highlighter. My objective is to basically do a text editor using basic HTML. For example a user ...
0
votes
2answers
91 views

How to edit a text that is converted into image? or any other approach to realize/edit text

For my project I want to resize text just like in Adobe Photoshop. But when I tried resizing(by mouse drag) the textpane, only the textpane was getting resized and not the text inside it. Then I tried ...
1
vote
2answers
195 views

highlighting the word in java

I am triying to highlight a word, but only .length()-2 at 1st time,delay and then last 2 words.The first words are highlighted but it is not highlighting the last two words after delay.please help. ...
0
votes
1answer
29 views

DocumentFilter wont detect and handle a paste/insert from a webpage (html)

Has anyone found a way to allow for a DocumentFilter to detect pastes from web browsers into a JTExtPane? I've noticed that it will catch pastes of text or text from a console into a JTextPane, but ...
1
vote
2answers
153 views

update jtextpane with java swing

I'm making an application with java swing. In a button of the application I need to every x minutes to make something. I think that I must do it with a new thread, but I have two problems. The first ...
0
votes
2answers
91 views

Inserting multiple Strings into a JTextPane with a TitledBorder in a single Thread locks cause programm to lock up

I have encountered a very strange problem when trying to insert multiple Strings into a JTextPane that has a TitledBorder (this is important, the problem seems to only occur with TitledBorder ...
0
votes
1answer
58 views

Edit the text selected in JtextPane

I have two Jtextpane what i want to do is that i what to select the text from 1 Jtextpane and i want that it should appear in the second Jtextpane after a menu item Edit is selected which i have done ...
0
votes
1answer
78 views

Return a value from a document listener

I have 2 java classes. Once adds a document listener to a doc(HTMLDoc). The other is a class that implements DocumentListener. I want to be able to return a value to this class so I know when the ...
1
vote
0answers
136 views

Removing a part of a StyledDocument First-in-Last-Out and keeping the lay-out

While having quite some free time to use, I ran into a problem concerning a StyledDocument as part of a JTextPane. I want to remove the first part of the text when the total size of the Document ...
1
vote
0answers
57 views

Wrong allignment when drawing a JTextPane into a BufferedImage

I am trying to draw some styled text into a buffered image. I use a JTextPane which is not part of any view hierarchy. I set the document properties with the desired alignment but the results are not ...
0
votes
1answer
159 views

JTextPane - scrolling visible text without JScrollPane

So in my application I use a custom component that is an extension of JTextPane. I need to extend this for the styling. I've managed to turn off word wrapping as this component is intended to act as a ...
2
votes
2answers
212 views

HTML tables in JTextPane showing weird “form” boxes

I'm trying to put an html table in an editable JTextPane. So you can edit tables in it like an excel sheet. When I try to do it, these weird col and colgroup boxes keep showing up. Also, the table ...
2
votes
1answer
115 views

Copying from a website into a JTextPane is giving me unwanted formating and html tags

Here is some background information: I have a class that extends JTextPane that when you copy text from a website into it is giving me unwanted formatting elements and tags. iframes, fonts, ect. The ...
3
votes
1answer
815 views

JTextPane text background color does not work

I am trying to make a small HTML-wysiwyg with a JTextPane but I can't get the BackgroundAction to work. I am using setCharacterAttributes on the StyledDocument of the JTextPane but it seems ...
1
vote
2answers
203 views

How to make JTextPane wrapped in JScrollPane shrink to fit the text

I have a JTextPane with HTML text. I used GroupLayout (using WindowBuilder). I've set the minimum size of my JFrame to 800x600 so the user cannot make it smaller than that. The app has a big ...
1
vote
2answers
114 views

How to implement DocumentFilter that inserts URLs as hyperlinks in JTextPane?

I have a JTable which uses JTextPane as editor and renderer. I added a keyListener to the editor, that listens for "space" character and checks if the last word is URL and if it is, adds it to the ...
3
votes
2answers
636 views

How can I set each character to a different color/background color in a JTextPane?

I've been searching for this for a while and so far all I've been able to come up with is how to create a style and apply it to a character like so: StyledDocument doc = (StyledDocument) new ...
1
vote
1answer
345 views

Textalignment is not working in java swing jTextPane

I want to align two text in same line first text should be in left side another one should be in right side of java swing textpane. so I have using style interface and Styleconstants class to align ...
1
vote
1answer
150 views

JFrame stops displaying when it previously displayed before

This is a follow on question from Display and interact with an HTML form in a Swing application. I've copied the code and run it successfully while in Eclipse (Indigo) but for some mysterious reason ...
0
votes
1answer
107 views

'HTML attribute is not serializable' exception (java)

I have a Jtable which uses custom renderer and editor, which use JTextPane as editor and renderer, which uses DefaultStyledDocument as the text model. The table contains hyperlinks, which are text ...
0
votes
1answer
93 views

Partial data displayed and rest by tooltip using JTextPane

I just wanted a code where I can display partial text and the remaining text by the tool tip using 'JTextPane'. Eg: If text is 'Java is re useable'. I want it to display 'Java is ...' Then I want to ...
-1
votes
1answer
109 views

How to create a JTable like header, and use it as JTexPane header?

I need a JTextPane which has a header on top just like the one in a JTable. Basically I need a one row/column multiline JTable without having to go through all trouble crating renderes and editors. I ...
2
votes
2answers
207 views

How to create a JTable that converts URLs into hyperlinks as you type, in Java

I need a JTable that has multilined cells, and converts multiple (in one cell) URLs into clickable hyperlinks and supports basic style manipulation (bold, italic, underline), which means I can edit ...
1
vote
1answer
130 views

Remove default padding in JTextPane on Windows

For displaying information on a Java Swing GUI I use a mixture of JLabel components and JTextPanes. As you can see in the following image, all labels are JLabels except for the one in the bottom ...
4
votes
3answers
505 views

JTextPane/JTextField strange behaviour with rare characters

I've discovered a strange bug in JTextPane/JTextField (or somewhere in the font rendering underneath them). I wonder if anyone else has encountered the same and might have a solution for this. I'm ...
3
votes
3answers
133 views

Word wrapping in JTextPane

I have a word wrapping issue when using JTextPane. I think it's my IDE (JCreator) but when i use the source everyone else is using I get several errors. Sorry for the line breaks... Could it be my ...
0
votes
1answer
170 views

how to remove component from JTextPane

OK. Inserting a component programatically is obvious: myJTextPane.insertComponent. Accessing components was a little trickier, but I use something like: ...

1 2 3 4 5 9