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

learn more… | top users | synonyms

0
votes
0answers
23 views

How to Auto-Resize a JTextpane

I want to make a jtextpane auto resized It means when i enter text the width of textpane should increase based on text when i press ENTER key from keyboard the height of textpane should increase ...
3
votes
2answers
356 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 ...
0
votes
2answers
29 views

GUI - Display lines one by one on a JTextPane and make a related JProgressBar

How to display lines one by one on a JTextPane and make a related JProgressBar? I have this loop: int k; for (k=0; k<array_TXT.length; k++) { if (array_TXT[k] != null) { ...
6
votes
1answer
91 views

Inserting some characters in JTextPane causes performance problems and memory leak

My chat client has a JTextPane in which text is inserted, which can be up to a few lines per second. It usually works fine, even for a longer period of time (e.g. an hour), however sometimes it just ...
-3
votes
1answer
44 views

How to drag more than one JTextPane [closed]

I have created a frame with null layout, and I have 6 small JTextPanes in it. My intention is when I clicked a particular textpane, it has to get dragged by mouse wherever I want in the frame.
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
2answers
23 views

caret position of an embedded swing component in a JTextPane

I have a JTextPane which uses a custom HTMLEditorKit to embed a swing component when the HTML tag is used. When I click on this component, I want to have the caret position updated to the location ...
0
votes
2answers
38 views

Prevent typing in the same style in JTextPane

forgive me for a possible misleading title, but the problem is a bit hard to describe. I'm currently trying to create a basic texteditor using a JTextPane in Java and I've run into an issue. As you ...
0
votes
0answers
25 views

JTextPane Coloured Words Not working

So I created a simple JFrame and added a JTextPane to it to create a sorta console.. I have the following methods and variables in my class which is supposed to change the colour of text in the ...
1
vote
0answers
37 views

removing recently add JLabel on JTextPane

Hi I was doing a list of online users names using JLabel inside the JTextPane. I used JLabel because I want the names to be clickable I was able to allign them horizontally using the styleddocument ...
0
votes
2answers
22 views

JLabel wont save through the JTextPane

I was trying to save the JTextPane which has the JLabel on it through insertComponent but by the time I want to save the JTextPane through filewriter and Buffered write on the textfile JLabel wont ...
-1
votes
0answers
26 views

Copy Text and Icon from JTextPane to Another JTextPane

I'm doing some chat application using JTextPane the application can receive ImageIcon and text. Screenshot: Here is some snippets of Send button: private void ...
0
votes
2answers
53 views

Simple page size setting when printing JTextPane?

I have a really simple Print function in my application that prints the contents of a Jtextpane. I want to set the default page size to A4 but after searching around I find lots of ways that involve ...
0
votes
1answer
29 views

how can I get the content of my JTextPane?

Hy everyone! I'm stuck in a little problem. I need some help or an idea, something...I have some words in a JTextPane and I want to read them one by one. I know I have to do it with StringTokenizer ...
0
votes
0answers
16 views

Jlabel resizing java

I was creating a JLabel inside the JTextPane with backGround Color and by the time I tried to resize it with the code setSize , setPrefferedSize and revalidate it both of them didnt work. I want all ...
1
vote
1answer
91 views

How do I save an image to a RTF formatted file?

I have a problem, in that I am able to save text to an RTF file, and also able to insert an image to the file, but when I save the file and load it again the image is not displaying. I have tried to ...
0
votes
3answers
31 views

edit html content in JEditorPane

I really need your help as I'm trying for one month now to do something using various approaches... unsuccessfully. I have a JTextPane containing a html text with images, etc. This works perfectly. ...
0
votes
1answer
35 views

how can i get text to blink in jtextpane?

I have this code where i add a string into a JTextPane (textArea is not editable), and this string needs to blinking. How can i add this kind of feature in this context? try{ ...
1
vote
1answer
54 views

How to access jtextPane in a different form?

I am developing an application where, when I select a value(file) from list it should be opened in jTextPane of a different form. I am using two panels one is mainpanel where my list is shown and one ...
0
votes
1answer
51 views

How to split a frame into views with multiple lines

I'm doing this program with NetBeans and I need: a Frame with a split view, fitting the frame's width, each view has multiple lines, where I add/remove strings, these strings can have a particular ...
0
votes
0answers
14 views

Java JTextPane shows background windows instead of content while running

i have made an application which copies all xml and html files from a dvd rom. The app works fine when copying but i thought i should make a log appear and update dynamically while the program copies ...
0
votes
0answers
54 views

How to align the JLabel and String inside the JTextPane FIXED

I was doing this chat message with JLabel and String inside the JTextPane and I having a problem Aligning the message and the JLabel try{ String query = "SELECT members.username, message FROM ...
1
vote
1answer
36 views

Java add global JTextPane styles/attributes?

I want to add a global AttributeSet to my JTextPane. I found this: SimpleAttributeSet style = new SimpleAttributeSet(); StyleConstants.setLeftIndent(style, 20); ...
-2
votes
1answer
25 views

How to color given words upon inserting/removing/updating text [closed]

I'm trying to code a program that is essentially an IDE for BB code (a thread styling language). You know when you're in NetBeans or Eclipse and you enter words like public, private, static, etc and ...
0
votes
1answer
28 views

Jtable inserting in JTextpane using null layout

can you please tell me how to create jTable in JTextPane using null layout Thanks in advance
0
votes
2answers
46 views

Displaying contents of doc file in jTextPane

i m trying to display contents of a doc file into jTextPane. But it is displaying only the last line of document while on console it is displaying whole document. I m using Apache POI library. File ...
0
votes
2answers
55 views

Exception in thread “AWT-EventQueue-0” java.lang.NullPointerExceptionn

I want to open a file in jTextPane in read mode. But its giving some exception... What should I do? Should I need to write ActionListner? I am new to java .. So help me out Friends.. My code is given ...
0
votes
1answer
38 views

Saving jTextPane style to a document (xml)

I making a text editor that the user can apply formatting such as bold and underline. I was able to do this using jTextPane and StyleConstants, however i don't know how to save the styling on the ...
0
votes
1answer
73 views

How can I create Log4j 2 appender connected with jTextPane?

I'm currently trying to make Log4j 2 log into a JTextPane. It should act like a STDERR or STDOUT in Netbeans IDE console (incl. text style - color). I know that I need to create an appender and ...
1
vote
1answer
35 views

How can I make image link work in JtextPane?

I want to give a image link on my pc to a row on jtextpane. I give "text/html" ttype to jtextpane jTextPane1.setContentType("text/html"); and I wrote this code for give image: html text: ...
1
vote
1answer
40 views

Scrollable text not depending on text length

I'm creating a GUI with a sidebar which has constant width, I want to add a Scrollable text, being the text into a JTextPane, all this into a JPanel PanelList. Problem is that it will automatically ...
2
votes
2answers
73 views

copy jTextPane text to clipboard

I have a form which contains a jTextPane and a jButton, I've set the jTextPane Accessible Description to text/html, now I want when I click on the jButton to copy the content of the jTextPane to my ...
1
vote
4answers
58 views

Clickable text in a JTextPane

I have a JTextPane declared like the following: JTextPane box = new JTextPane(); JScrollPane scroll = new JScrollPane(); StyledDocument doc = box.getStyledDocument(); scroll.setViewportView(box); ...
1
vote
2answers
188 views

JTextPane and Horizontal Lines

How would I go on creating a horizontal line element in JTextPane? Just a rectangle painted probably by View.paint(Graphics), which covers the whole width of the JTextPane, and has an arbitrary ...
0
votes
1answer
66 views

JEditorPane shows raw HTML with Google Docs

I'm trying to load a published Google Doc into a JEditorPane. Here's the document: link. Here's how a JEditorPane renders it: My observations from the image: The HTML is being fetched properly. ...
0
votes
1answer
36 views

Get paragraph style in JTextPane

I'm doing a text editor using JTextPane, I need to add colors to some words but i want that if user clicks on an area that is already colored, to be painted with that color (paragraph style), not ...
-1
votes
1answer
75 views

Listener in JTextPane [closed]

I am using JTextPane in Swing Application. Here i get problem that when i open a file and read its content to the JtextPane it don't call Document Listener. Which Listener should i add in JTextPane ...
0
votes
0answers
17 views

Change the color of some specific words in a String in Java

I am trying to create a simple java text editor which will change color on java keywords as you type them. I know i m supposed to make it run as a thread to achieve simultaneous typing and formating ...
2
votes
2answers
45 views

How to set colour of text from a certain point forward

I'm building a small conversation agent, where the text looks like follows: I would like to set the System's text to always be red. The text is all placed in a JTextPane. How can I accomplish ...
1
vote
1answer
83 views

Calculating lines with LineBreakMeasurer and change fontsize

I've used other excellent answers to design a method that returns the correct dimension of a JTextPane, given it's content and width, using LineBreakMeasurer. The problem is that it is slightly of ...
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 ...
0
votes
1answer
40 views

ColorPane - grab strings of different character possible?

I'm currently working on a old project that was given to me, it currently use java swing and has a basic gui. It has a ColorPane that extends Jtextpane to change colors of selected text. It uses this ...
0
votes
1answer
130 views

Java - Highlighting Text Between two Chars - JTextPane

I need to be able to highlight the words within two chars. For example, : //Highlight whatever is in between the two quotation marks String keyChars = " \" \" "; I have been grueling over this for ...
0
votes
0answers
22 views

JTextPane custom tags

I am probably not clearly understanding the javadoc for setCharacterAttributes. I am trying to update the attributes of a custom tag with new value. The user right clicks ...
0
votes
1answer
45 views

show html text at the bottom of the JTextPane

I've been trying to show some text at the bottom of the JTextPane area using html. As it's not supporting styles, I used the following code: <!-- saved from ...
2
votes
1answer
135 views

Java - Auto-Indentation in JTextPane

I'm making a text-editor in Java, and I have everything I need but auto-indent. How would I make the indentation stay the same if they go to a new line. I'm using a JTextPane for my editor window. ...
1
vote
2answers
47 views

How can I get a line of string from a large block of string?

What I'm trying to do is get a segment of a large String. I have tried using indexOf(), but that fails completely when it comes to repeated text. My end goal is for a user to be able to select text in ...
1
vote
2answers
53 views

Border with equal sizes on all 4 sides of JTextpane

I am setting a createLineborder to my JTextPane. But the border lines are little different in right-end and bottom of JTextpane when compared to Left-end and top of TextPane. I searched in net and I ...
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.
1
vote
2answers
71 views

Adding a JButton to a JTextPane

I'm having problems trying to add a JButton to a JTextPane with a String. So what I am trying to do is to add each String in a for loop and then add ad JButton after that added String. The code below ...

1 2 3 4 5 9