A Java Swing text component that can be marked up with attributes that are represented graphically.
0
votes
1answer
65 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
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
45 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
59 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
61 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
2answers
95 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
1answer
491 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
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 ...
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
67 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 ...
1
vote
3answers
1k views
How to clean JTextPanes/JEditorPanes html content to string in Java?
I try to get pretty (cleaned) text content from JTextPane. Here is example code from JTextPane:
JTextPane textPane = new JTextPane ();
textPane.setContentType ("text/html");
textPane.setText ("This ...
-2
votes
1answer
117 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 ...
3
votes
1answer
698 views
JTextPane Syntax-Highlight - Restricting my formatting?
I'm currently programming an IDE, and am using a JTextPane as the "code-editor".
Now, I am trying to add syntax highlighting to the JTextPane, but am having some trouble...
I'm using HTML to replace ...
2
votes
0answers
59 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
224 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 ...
1
vote
4answers
2k views
Java JTextPane RTF Save
i have the following code trying to save the contents of a JTextPane as RTF. although a file is created in the following code but it is empty!
any tips regarding what am i doing wrong? (as usual dont ...
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. ...
1
vote
1answer
2k views
How to append a string in java swing JTextPane?
I am creating a chat application. In this chat application, I have to use Java Swing's JTextPane to give style to some specific strings like the user's display name and the message's time. That's why ...
0
votes
1answer
115 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 ...
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 ...
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;
...
0
votes
2answers
90 views
How do I change color of every word in JTextPane?
Every time key is typed i get jpane's characters, split them using spaces and color every word in other (random) color. This fragment of code does the work:
private class KeyHandler extends ...
1
vote
2answers
101 views
JTextPane color everything instead of few chars
So Im trying to write simple editor. I want to color gray all chars witch are between " characters. Fragment which does it is:
class MainPanel extends JPanel {
private int WIDTH = 800;
private int ...
5
votes
2answers
4k views
Styling text in a JTextArea or JTextPane
Basically, I have a JTextPane to hold some text which I wish to style. JTextArea would have been better for me to use but I'm told you cannot style the text in these?
However, the JTextPane doesn't ...
-3
votes
1answer
118 views
want a java swing tableview example [closed]
We are developing a java Swing application .I want to add a table in a JTextPane, the table can be resized and shoude be support multi-span (row and column).It seems java Swing table view support ...
1
vote
2answers
218 views
setContentType(“text/html”) for JTextPane doesn't work as it is expected
When you setContentType("text/html") it is applied only for the text that is set via JTextPane.setText(). All other text, that is put to the JTextPane via styles is "immune" to content type.
Here is ...
0
votes
3answers
79 views
How should I display my code inside of my Java program?
I apologize if this question is too "general";
But my question is very specific to what I am programming and I was not able to find a descent answer anywhere else.
I am creating a "Proof of Concept" ...
2
votes
1answer
183 views
Changing the size of JTextPane
I am new in Java, and I just found this piece of code in StackOverflow: ResizeTextArea.
I want to use JTextPane instead of JTextArea. In JTextPane, there is no setRows() method to change the number ...
0
votes
2answers
45 views
How come I can't use a constructor variable in the rest of my coding?
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.JTextPane;
public class Log extends JFrame {
private static final long serialVersionUID = 1L;
String logx = "LOG: ";
...
2
votes
1answer
129 views
Drag and drop styled text to another JTextPane
Good day to everyone!
I'm working on text editor with styles support. And in the application there will be several text editors. I think it will be a good idea to allow drag styled text from one ...
0
votes
1answer
152 views
Write text into a JTextPane with an image background
I have a JTextPane with an image for its background.
prevWords = new JTextPane()
{
public void paint(Graphics g)
{
BufferedImage img;
try
{
...
-1
votes
1answer
76 views
How to force JTextPane not to go to next line?
I need to use a JTextPane as a JTextField.my JTextPane goes to new line while the text reaches to its border, but i want it continues the first line and doesn't go to next line.
how to do that?
0
votes
1answer
74 views
java how to delete the contents of JTextPane as user types?
I want to delete the contents of my JTextPane as the user types, I mean
JTextPane.addKeyListener(new java.awt.event.KeyAdapter()
{
public void keyTyped(java.awt.event.KeyEvent evt)
{
...
1
vote
1answer
103 views
JTextPane won't wrap
I'm trying to get JTextPane to word-wrap. I've searched this site and across the Internet and it seems that JTextPane is supposed to word-wrap by default- most trouble people have is with disabling ...
0
votes
1answer
150 views
JTextPane with HTML, Why do certain inline style attributes get selectively removed?
I am currently working with a JTextPane with html in it. I set its content type to html and everything worked just fine... or so I thought.
The function of the JTextPane is to output paragraphs(with ...
0
votes
1answer
188 views
How can I copy/paste styled text from/to clipboard?
I have I JTextPane and I'm using DefaultStyledDocument as a text model. I currenly use the JTextPane's default copy() and paste() methods for copying and pasting, but as you know they copy/paste plain ...
4
votes
1answer
89 views
How to make JScrollPane/JTextPane “Intelligent”
So, i have a situation where, a scrollbar needs to scroll automatically when meets a certain logical situation.
In my case, i have few lines written on JTextPane, and i am highlighting the words.So, ...
1
vote
2answers
1k views
How to copy styled text in JTextPane
I'm trying to create a WYSIWYG editor using JTextPane.
I'm using DefaultEditorKit.CopyAction to copy text in the editor. But this method does not preserve the style of the text. Can someone tell me ...
0
votes
1answer
68 views
JTextPane only shows inserted components in single line
I need to insert numbers of JButtons in a JTextPane. It is done via insertComponent() method. but there is a problem, the components are in a line and JScrollPane doesn't scroll neither vertically nor ...
0
votes
1answer
44 views
Show stopwatch in JTextPane
I want to put my stopwatch to JTextPane in JPanel, but it doesn't appear :/ I don't know if I can put objetct from class (extends JLabel) in class (extends JPanel). Maybe, this is the reason.
My ...
0
votes
0answers
30 views
How to make a JTextPane with only 1 row? [duplicate]
Possible Duplicate:
JtextPane of one Line
as it's impossible to change the color of words in a JTextField I decided to use a JTextPane instead. now I need to make my JTextPane just like a ...
4
votes
1answer
187 views
Alloy Look and Feel and Anti-Aliasing
Anyone here using the Alloy Look and Feel? I'm facing a strange bug with anti-aliasing and JTextComponents. Alloy by default does not use anti-aliasing at all, so I have to force it by creating my own ...
-5
votes
1answer
112 views
creating a wordpad like application in java
i've trying to create a wordpad like application, i want to be able to insert a resizable component or picture in a JTextPane or JEditorPane along side the text that can be typed in it.
Please guys i ...
8
votes
2answers
423 views
How to change the color of specific words in a JTextPane?
How do I change the color of specific words in a JTextPane just while the user is typing?
Should I override JTextPane paintComponent method?
1
vote
1answer
112 views
Make JTextPane's Text Move Sideways Instead of a New Line
I am working with the JTextPane and am trying to make the text move sideways instead of a newline like the JTextField. I have tried searching and looking through the JTextPane's API but I haven't ...
2
votes
2answers
227 views
Write Indian regional languages like Gujrati, Punjabit etc. in JTextPane
I am able to write Hindi, Urdu in JTextPane, but not able to write other Indian regional languages in text pane. I have also downloaded the font for these languages, but it doesn't work.
How to write ...
0
votes
0answers
181 views
Problems rendering markdown formatting in JTextPane
I'm making a simple markdown text editor with Swing which can render markdown formatting live in its main JTextPane. That is, markdown-formatted text like *hello* is displayed in italics once ...




