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

learn more… | top users | synonyms

1
vote
2answers
722 views

Keeping the correct style on text retrieval

I am making an application similar to a chat. For that purpose I have two JTextPanes, one where I'm writing and one that displays messages. This is the code that handles the transferring of text from ...
9
votes
4answers
5k views

JTextPane highlight text

Can I highlight some text into a JTextPane starting from a value and ending from another value like the following but with the yellow color? "" JTextPane highlight text "" Thanks.
2
votes
3answers
915 views

Part 2 - How do I get consistent rendering when scaling a JTextPane?

I submitted another version of this question and a sample program before: How do I get consistent rendering when scaling a JTextPane? Recapitulating the problem: I would like to allow users to zoom ...
8
votes
2answers
21k views

Centering Text in a JTextArea or JTextPane - Horizontal Text Alignment

Is there a way to create horizontally centered text for a JTextArea like with a JTextField? setHorizontalAlignment(JTextField.CENTER); Is there a way I can accomplish the same thing with a ...
3
votes
2answers
760 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 ...
2
votes
2answers
4k views

setting JTextPane to content type HTML and using string builders

I'm using string builders to append text to my JTextPane, I've set content type as pane.setContentType("text/html"); but the no text actually appears on my JTextPane. This is an example of my append: ...
9
votes
3answers
17k views

JTextPane appending a new string

In an every article the answer to a question "How to append a string to a JEditorPane?" is something like jep.setText(jep.getText + "new string"); I have tried this: ...
9
votes
4answers
1k views

Wrap long words in JTextPane (Java 7)

In all versions of Java up to 6, the default behaviour of a JTextPane put inside a JScrollPane was: wrap lines at word boundaries if possible. If not, then wrap them anyway. In JDK 7, the default ...
3
votes
2answers
643 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 ...
3
votes
2answers
2k views

Swing component flickering when updated a lot

I've got a couple thousand lines of code somewhere and I've noticed that my JTextPane flickers when I update it too much.. I wrote a simplified version here: import java.awt.*; import javax.swing.*; ...
2
votes
2answers
154 views

Get a component from a JTextPane through javax.swing.text.Element?

I am using a JTextPane to display characters and symbols, where the latter are represented by custom painted JComponents. For example, the text pane might show something like this: The text pane is ...
1
vote
0answers
210 views

How does setCharacterAttributes take account of '\n' and '\t'?

I am working in school project for creating a simple IDE. In it I am processing the entire program as a single string like... import java.io.*\npublic class A{\n...........\0 To trace all ...
-2
votes
1answer
114 views

JTextPane formatting [closed]

I have a JTextPane where I want to add lines and depending on their content have them have a different formatting. Currently I have this StyleContext context = new StyleContext(); StyledDocument ...
7
votes
4answers
1k views

Adding tooltips to JTextPane

I want to add some tooltips to only a certain text inside a JTextPane. As an example, if there is a reference link text inside the JTextPane I want to add a tooltip to that text to show the link. Is ...
3
votes
4answers
3k views

Getting raw text from JTextPane

In my application, I use a JTextPane to display some log information. As I want to hightlight some specific lines in this text (for example the error messages), I set the contentType as "text/html". ...
3
votes
1answer
821 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 ...
3
votes
2answers
10k views

How to add text different color on JTextPane

Can anybody help me with simple log, I have to add at first line on JTextPane log messages with choosen color ( green ok, red failure ). How to achieve this ?
3
votes
1answer
2k views

How is word-wrapping implemented in JTextPane, and how do I make it wrap a string without spaces?

How exactly is word-wrapping implemented in JTextPane? I'm trying to understand exactly how it works so that I can modify the behavior. Right now, if I have a standard JTextPane inside a JScrollPane, ...
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. ...
4
votes
2answers
890 views

JTextPane doesn't display JScrollPane and doesn't Wrap Text

I need to display links so I'm using JTextPane with setContentType. However, the content doesn't wrap and there's no scroll. The content of JTextPane will be returned from a RSS feed. Here's the full ...
4
votes
1answer
1k views

Java HTMLDocument (insertAfterEnd, insertAfterStart, insertBeforeEnd, insertBeforeStart) not working?

I have a JEditorPane that displays HTML that is generated programmatically (at runtime). Up to now when I was adding a "line" I was re-creating the whole HTML text in a string buffer and then passing ...
3
votes
1answer
349 views

How do I allow a user to change his font in a JTextPane using a JComboBox?

I'm finding the amount of helpful documentation/tutorials on the internet are lacking when it comes to the topic of JTextPanes. I'm trying to do a simple text processor, and I want it to be able to ...
2
votes
2answers
681 views

How to implement bullet points in a JTextPane?

I have a JTextPane with a StyledDocument and RTFEditorKit implemented. How can I add bullet points (preferrably multi-level ones) onto the JTextPane?
2
votes
1answer
523 views

Line numbers in jtextpane in Netbeans

I am using Netbeans 7.1. are there any option for displaying line numbers in jtextpane?
1
vote
2answers
242 views

Java Default Highlighter

Im using the DefaultHightlighter.DefaultHightlighterPainter to highlight text within a java text pane. I want to remove all highlights (there could be more than one string highlighted) and want it to ...
1
vote
3answers
2k views

Swing JDialog/JTextPane and HTML links

I am using an html page inside a swing JTextPane in a JDialog. In the html I have a <a href="mailto:email@adress.com">John</a> When I view the web page via an explorer when the mouse goes ...
1
vote
3answers
667 views

JtextPane of one Line

I want to implement a JTextField with custom fonts.I came to know that we cannot do that in JTextField. Now I am using JtextPane i have a problem How to make sure the carat doesn't go to the next ...
1
vote
2answers
5k views

Toggling text wrap in a JTextpane

How would I go about toggling text wrap on a JTextpane? public JFrame mainjFrame = new JFrame("Text Editor"); public JTextPane mainJTextPane = new JTextPane(); public JScrollPane ...
1
vote
3answers
1k views

Can't remove extra line spacing in JTextPane for html content

I can't squeeze together the lines in a Java JTextPane if I set the content-type to text/html. I would like them as close together as they are when the content-type is text/plain, the default. The ...
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 ...
0
votes
1answer
123 views

Adding a JTextPane to BorderLayout.SOUTH causes JScrollPane to scroll

I have a JPanel which is contained within a JScrollPane. The JPanel has components added to it's NORTH, CENTER, WEST and SOUTH areas (BorderLayout). When I add a JTextPane to the SOUTH position, ...
0
votes
3answers
3k views

Java JTextPane JScrollPane Display Issue

The following class implements a chatGUI. When it runs okay the screen looks like this: The problem is very often when i enter text of large length ie. 50 - 100 chars the gui goes crazy. the chat ...
4
votes
3answers
508 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
2answers
2k views

Increasing the font size of a JTextPane that displays HTML text

Lets say that I have a JTextPane that is showing a HTML document. I want that, on the press of a button, the font size of the document is increased. Unfortunately this is not as easy as it seems... ...
2
votes
1answer
316 views

How to implement an auto-complete for a text editor written in java?

I'm trying to create a text editor like program for coding in mips assembly using java , the point i got mixed up alittle was the part i was trying to provide a Control-Space feature like that of ...
2
votes
2answers
529 views

Using &shy; in Java HTML aware Component

I have following problem: I display an HTML-Document with an JTextPane. In my HTML-Text there are &shy; (shy at w3.org) to make a soft-hyphenation. My problem is, that no hyphenation appears. ...
6
votes
1answer
411 views

Java Print API - Space character incorrectly printed using monospaced 'Courier New' font

Let me first describe the picture below: There are two printed papers. The only difference between them is that few space " " characters from paper in left are replaced by dot "." character in the ...
4
votes
1answer
363 views

Displaying urdu characters in JTextPane

How can I display a single Urdu character in a JTextPane? I have translated English characters to Urdu characters. But I can't find any way to correctly display those characters into my text ...
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 ...
3
votes
2answers
987 views

Font of a StyledDocument associated with a JTextPane

What font does the StyledDocument associated with a JTextPane use? By default, does it use the same font as the JTextPane? In particular, I'm wondering about the font size.
3
votes
0answers
397 views

How do I get consistent rendering when scaling a JTextPane? [duplicate]

Possible Duplicate: Part 2 - How do I get consistent rendering when scaling a JTextPane? I would like to allow users to zoom into or out of a non-editable JTextPane. Running the example ...
3
votes
1answer
566 views

Why do I loose new line character when I load text from a java servlet to JTextPane?

I try to load content of a text file that contains some text in multiple lines using java servlet. When I test servlet in browser it works fine. Text is loaded with new line chars. But when I load it ...
3
votes
5answers
2k views

How can I create an AutoComplete popup in a JTextPane in Java?

I am creating a SQL editor. I am using JTextPane for the editor. I want to implement AutoCompletion for table name etc. like Eclipse.
2
votes
1answer
80 views

Keeping the format on text retrieval

I am making a network application that has a chat function. On the chat I have one JTextPane for displaying messages and one more for input. Then I have some buttons that allow to add style on the ...
2
votes
2answers
3k views

Method that returns the line number for a given JTextPane position?

I'm looking for a method that computes the line number of a given text position in a JTextPane with wrapping enabled. Example: This a very very very very very very very very very very very very ...
6
votes
5answers
3k views

How do I easily edit the style of the selected text in a JTextPane?

How do I easily edit the style of the selected text in a JTextPane? There doesn't seem to be many resources on this. Even if you can direct me to a good resource on this, I'd greatly appreciate it. ...
5
votes
1answer
273 views

How to wrap text around components in a JTextPane?

I don't understand the wrapping behavior in a JTextPane. If I insert a short text, then a JComponent and then again the short text I can see the inserted stuff in one line if the frame is large enough ...
4
votes
2answers
3k views

Make JTextPane adjust height to content

I'm trying to get a JTextPane to adjust its height according to whatever content I feed it. All I can do is to set a fixed height in pixels using Dimension. How do I make the JTextPane ...
3
votes
3answers
134 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 ...
3
votes
1answer
269 views

JTextPane: KeyBindings are not working on StyledEditorKit

Please have a look at the following code import java.awt.Color; import java.awt.Dimension; import java.awt.FlowLayout; import java.awt.event.ActionEvent; import ...

1 2