Tagged Questions
A Java Swing text component that can be marked up with attributes that are represented graphically.
6
votes
2answers
7k 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 ...
6
votes
5answers
1k 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
98 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 ...
5
votes
1answer
120 views
JTextPane immutable text blocks
I've been creating something like text editor for a while and noticed one interesting feature in NetBeans: when creating Java Application from a template (for example, "Desktop Application"), it ...
4
votes
2answers
108 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 ...
4
votes
2answers
134 views
How to use <a href> tag in JTextPane
I have a JTextPane which displays a link to which on click should open a page in the browser.
The link is set as a text to the TextPane as shown:
<a href=http://www.google.com ...
4
votes
2answers
333 views
HTML Page not Showing up in Java Swing JTextPane
I'm trying to experiment with the non-JTextArea Swing text components, and in this code am trying to display a very simple web page in a JTextPane. I'm able to read the web page and able to put it ...
4
votes
2answers
709 views
Highlight current row in JTextPane
I'm trying for more than 2 days to implement a specific requirement for a text editor window... unfortunately without success so far :(
The goal is to get a text editor window which will highlight ...
4
votes
2answers
279 views
colored xml display in swing
Is there an "easy" way to display xml data to a user via an JEditorPane or JTextPane in colored/highlighted way?
4
votes
2answers
401 views
JTextPane Synchronize Style Selection UI Problem
I am developing a simple WYSIWYG RTF editor in Java and have a small issue. I need to be able to synchronize the style selection toggle buttons (such as bold, italic, underlined) to the users text ...
4
votes
2answers
1k 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
2answers
40 views
Inbuilt browser on a JPanel
I'm trying to create a JPanel that displays webpages. I've gotten to the stage
where I can read the webpage, however when I display the page, it looks all muddled
up, see below.
Here is the source ...
3
votes
1answer
55 views
Swingx search in a JTextPane
I should want to implement a search functionality in a JTextPane. I already use swingx, and I see Searchable interface, with a JXEditorPane.DocumentSearchable. I suppose it's for JXEditorPane.
But I ...
3
votes
1answer
78 views
Displaying Urdu characters in JTextPane
How can I display a single character in JTextPane, I want to display my urdu characters in my JTextPane component. I have translated english characters to urdu characters but could'nt find any way to ...
3
votes
1answer
100 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
118 views
JEditorPane, is preferredSize tracking parent width?
JEditorPane seems to have a very interesting feature: it seems to track its parent width, and determines the preferred height accordingly, also if the parent IS NOT a JViewport.
By track i mean that ...
3
votes
3answers
60 views
How to have a Scrollable JTextPane?
I would like to have a JTextPane that have scroll bar, how can I do so ? Thanks.
3
votes
1answer
213 views
Java: Register <ENTER> key press on JTextPane
I'm making an application with java that has a JTextPane. I want to be able to execute some code when the enter key is pressed (or when the user goes to the next line). I've looked on the web and not ...
3
votes
4answers
269 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
5answers
257 views
JTextPane inserting large text problem
I've a problem: firstly I load some large text from file. After that I want to display it in my JTextPane. For inserting text into JTextPane I use:
SwingUtilities.invokeLater(new Runnable()
{
...
3
votes
2answers
505 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.
3
votes
1answer
528 views
Add HTML content to Document associated with JTextPane
I have a question regarding some simple console I'm making. I know that it's possible to add html content to JTextPane with function setText() with previously set setContentType("text/html"); . But ...
3
votes
0answers
353 views
How do I get consistent rendering when scaling a JTextPane? [closed]
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
2answers
344 views
Java wrap text around image
How to wrap text around an image in Java? Or how to accomplish CSS float in Java?
I am loading a HTML text with some image tags into JTextPane component.
Example:
text text text text <img ...
3
votes
1answer
252 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
1answer
1k views
How to output JTextPane styled contents to HTML, including custom style?
I currently use a JTextPane to allow users to add/edit text. It allows bold/italic/underline (and I plan to allow links in the future). It also allows users to drop buttons in, which are inserted as ...
2
votes
1answer
35 views
Line numbers in jtextpane in Netbeans
I am using Netbeans 7.1. are there any option for displaying line numbers in jtextpane?
2
votes
3answers
42 views
Is it possible for JTextPane to have columns and rows?
I have JTextPane from Netbeans designer's section. I want to add columns and rows on it. However, there is no option for adding columns or row in the property window of JTextPane. Is there another way ...
2
votes
2answers
50 views
Caret position in JTextPane is not correct ?! Bug or expected behavior?
i have stumbled into the following problem:
I want to read the character in a JTextComponent's document in the location of the component's caret. When i am using a JTextPane the character returned ...
2
votes
1answer
105 views
Double List Item insertion in JTextPane
I have a button that inserts an unordered list item into a JTextPane. However, when I click on the button to insert a list item, two bullets are inserted instead of one. One bullet is inserted only ...
2
votes
1answer
60 views
JTextPane HTML Image integration
I have a JTextPane and I do it :
HTMLEditorKit kit = new HTMLEditorKit();
HTMLDocument doc = new HTMLDocument();`
this.setEditorKit(kit);
this.setDocument(doc);
Then I do :
profilePictureSrc = ...
2
votes
1answer
76 views
Designing A Source Code Editor in Java, Design Questions:
I'm beginning to write a source-code editor in Java as a personal project/hobby. Before I lead myself down any awful paths, I would like to ask a few questions:
Is a JTextPane an appropriate ...
2
votes
1answer
46 views
append a style to a JTextPane
Here's my problem. I'm writing an editor which has syntax highlight. Nothing fancy but it does the job. The problem is that I'm implementing error recognition and when I want to add the style to ...
2
votes
2answers
101 views
JTextPane with custom document and editor does not display icons correctly
We are implementing a very small messenger like application in Java and are using a JTextPane for our messages panel. Now, we are trying to replace common smileys with .gif files and we use some ...
2
votes
1answer
65 views
Java substring is switching my positive indexes with negative ones
I have come to the conclusion HTML enabled JTextPanes do not support word wrapping. So I am attempting to provide a home brew method. I will post it on the 'net once it is complete. I may not have ...
2
votes
1answer
50 views
getting JTextPane to scroll
How do I get JTextPane to scroll? In this example, JScrollPane is employed but as running the code will reveal, the scroll bar can be displayed but it is not functional.
import ...
2
votes
2answers
158 views
JTextPane line wrapping
Unlike JTextArea, JTextPane has no option to turn line wrapping off. I found one solution to turning off line wrapping in JTextPanes, but it seems too verbose for such a simple problem. Is there a ...
2
votes
1answer
130 views
JTextPane indentation
Is there a way to indent a block of text in a JTextPane?
import javax.swing.*;
import java.awt.*;
import javax.swing.text.StyledDocument;
public class SimpleTextPane {
public static void ...
2
votes
1answer
223 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, ...
2
votes
2answers
194 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.
2
votes
2answers
131 views
How to get JTextPane to display ellipsis to signal text overflow?
I am using JTextPane as a table cell renderer to display rich text. When the text is too long to fit inside a cell, it is truncated. I would like to mimic the JLabel behavior, i.e. show ellipsis (...) ...
2
votes
1answer
102 views
Disable hyperlinks in JTextPane
I have a JTextPane with HTML contents. Without changing the content type or calling setText, I would like disable the hyperlinks. I want
The hyperlinks to have the same style as the surrounding text ...
2
votes
2answers
638 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 ?
2
votes
2answers
153 views
How do I center the Caret position of a JTextPane by autoscrolling?
I would like to auto scroll in my JTextPane so that the line with the caret (which is highlighted) is centered.
I am highlighting the line by using the Utilities.getRow(...caretPosition) method.
Seems ...
2
votes
1answer
137 views
Java JTextPane italics help
So I am working on a Java GUI application where there is text styled with italics in a JTextPane which the user can copy. What I need is the user to be able to copy and paste the text into a Microsoft ...
2
votes
3answers
348 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 ...
2
votes
2answers
366 views
retrieving JTextPane AttributeSet values
When using the JTextPane method insertIcon(), the javadoc states "...This is represented in the associated document as an attribute of one character of content."
How do I retrieve the information ...
2
votes
1answer
869 views
Correctly print out a hard copy of a JTextPane with “text/rtf” content
I'm trying to print out some simple RTF-formatted text to a laser printer using a JTextPane.
The result looks fine on a software PDF printer (FreePDF XP), but the text doesn't have proper space ...
2
votes
1answer
136 views
How do I stop my JTextPane swallowing keyboard shortcuts (accelerators)?
My application's main JFrame contains a JTextPane. While it has focus, it consumes all keyboard shortcuts ("accelerators") instead of passing them on to the JFrame's JMenu. This means that while it ...
2
votes
2answers
905 views
Making words different colors in JTextField/JTextPane/?
I'm trying and failing to understand how to use Java's text editor components to colorize text as you insert it. I don't want or need a fully featured syntax highlighting library.
Basically, I have a ...