Tagged Questions
0
votes
0answers
38 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
1answer
45 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.
0
votes
2answers
25 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 ...
6
votes
1answer
95 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 ...
0
votes
0answers
26 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
38 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
41 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 ...
-1
votes
0answers
28 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 ...
1
vote
1answer
56 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
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
53 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 ...
1
vote
1answer
39 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);
...
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 ...
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
49 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
57 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
43 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 ...
1
vote
1answer
39 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
76 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
61 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);
...
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
76 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 ...
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 ...
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
134 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 ...
2
votes
1answer
139 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
48 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 ...
1
vote
2answers
73 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 ...
0
votes
2answers
37 views
How to decide the order of components added to JPanel
I have a JPanel of null layout called MainPanel. Onclick of a button I am adding JTextpane on mainPanel. On first click I am creating a textpane of background color white. On second click I am ...
0
votes
0answers
47 views
HyperlinkListener to use textPane
I'm trying to get an applet to open a window in the browser for Wikipedia (Chrome and IE9, Win 7). I've tried using a JLabel, a JButton (using HTML in the code) and after reading another question on ...
1
vote
1answer
60 views
Is it possible to color only a portion of JTextpane?
Hi I am trying to find out whether it is possible to apply background color only to a portion of JTextpane? For example if I have a JTextpane of size 300 X 400 then can I apply some color to a portion ...
0
votes
1answer
27 views
BadLocationException when using Utilities.getRowStart On hit of Enter key
I am using Utilities.getRowStart to find out the number of lines in a JTextPane. But it gives the BadLocationException when I hit the enter key:
javax.swing.text.BadLocationException: Position ...
0
votes
1answer
62 views
How to identify if the selected text in JTextPane are of different sizes?
I am developing a editor where I have a combobox for font size. User can use it to alter the text size.
I have also implemented the caret listener which tells me the size of selected text and updates ...
1
vote
1answer
84 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 ...
1
vote
2answers
98 views
Use JTextPane to style code
How can I use JTextPane to style a section of text as "CODE," like you often see on forums, or you see here on stack overflow?
public static main(String[] args) {
/**
* Look at this Code ...
2
votes
2answers
156 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 ...
0
votes
2answers
71 views
Saving JTextPane's contents into ordinary text file fails
I have following chunk of code:
private void saveAs()
{
CDocument currentDocument=this.panelMain().openedDocuments().get(this.panelMain().openedDocuments().size()-1);
StyledDocument ...
3
votes
1answer
68 views
Random erronous highlighted resulted in JTextPane (Arabic)
I'm trying to search and highlight words in my JTextPane. It works wonderfully with words that don't have a lot of results so far but when I try to search for a word that has a lot instances, ...
3
votes
1answer
51 views
Layout trouble within JTextPane
I am sorry for the lack of a better title, but I have no idea how to specify the error further, since I don't understand its nature. Maybe someone can edit it, when the problem is understood.
I am ...
-2
votes
1answer
120 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 ...
2
votes
0answers
60 views
Is text wrapping in JTextPane different in different java versions?
Below is an SSCCE, which wrappes the text on my computer with java version 1.6.0_23, but doesn't on a another computer with java version 1.7.0_17-b02.
OS on both: Windows7 64bit
If I add some spaces ...
1
vote
1answer
227 views
Java Chat App - Trouble with multiple fonts, inserting smilies & tables
I am making a java chat application. I have already made the basics, & its working fine. Now I wanted to add the ability to change fonts & insert smilies. I also wanted to add a little Time ...
0
votes
1answer
106 views
I got a performance issue when i am using JTextpane as cell Renderer in Jtable for multi line cell wrap Text [closed]
I am using JTextPane as Cell Renderer in JTable for wrapping a cell .Wrapping is working fine in the JTable but I got a performance issue when i am wrapping above 1000+ rows and 8 columns in JTable. ...
0
votes
1answer
116 views
JTextPane make new line
I can make new lines using this code
StringBuilder sb = new StringBuilder();
sb.append("<span style=\"color:black\">--------------</span> <br>");
sb.append("<span ...
0
votes
1answer
79 views
How to delete a picture from a JTextPane?
I have a code that makes it possible for a user to insert a picture into his text document.
I do have a JtextPane where the user can write some text and insert a picture.
But if the picture is ...
0
votes
1answer
66 views
Getting 'Attempt to mutate notification' exception
My goal is to implement blue coloring of keywords written by user into JTextPane. This is how my code look like:
private class DocumentHandler implements DocumentListener {
@Override
...
0
votes
2answers
53 views
Letters in JTextPane are colored after delay
I have simple text editor which colors JAVA key words blue. This is the code:
class MainPanel extends JPanel {
private int WIDTH = 800;
private int HEIGHT = 500;
private JFrame frame;
...









