Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
105 views

Using Actions with DocumentListener

I'm developing an application where I want something to be triggered both by the user updating the contents of a JTextArea, or manually via pressing a JButton. I have done the first part using a ...
5
votes
4answers
1k views

How can I create a JTextArea with a specified width and the smallest possible height required to display all the text?

In all the examples that I can find that use a JTextArea, the height & width is known before constructing the JTextArea, and if the JTextArea would require more height, then it is put inside of a ...
4
votes
3answers
178 views

Getting the removed text from a Java text component

A JTextComponent allows you to add a DocumentListener to its Document, which will tell you when text was added or removed, and the offset and length of the change. It will not, however, tell you what ...
3
votes
2answers
49 views

Deactivate ScrollOnExpand on JScrollPane

I want to prevent the scrollpane from scrolling when the content in its view expands. Any pointers? I've tried Googling variations on the title, as well as reading all the docs for JScrollPane, and ...
3
votes
1answer
80 views

Overwriting getText of JTextField

I wish to overwrite getText() so that it can return a null value instead of a a blank value. I noticed that getText() is a part of JTextComponent and I've been unable to successfully overwrite it. ...
2
votes
3answers
135 views

WYSIWYG XML Editor java

I need to write a swing based editor that can open specified xml files, which contains the text i have to use between a <p> and </p> tag, but there are other tags in the file too. There ...
2
votes
5answers
328 views

How add a newline to JLabel without using HTML

Anyone please tell me how can i add a newline to a JLabel. I know if we use simple HTML, it will work. But if i use html, JLabel is not showing the font which embedded with the application. I am ...
2
votes
2answers
198 views

How to get the added, removed or changed chars from DocumentListener?

I have JTextAreas and need to get chars, which are added, removed or changed to it. How do I do this?
1
vote
1answer
121 views

Syntax Highlighting

I created a Summer project for myself and decided that I wanted to write a simple text/code editor. I think everything has been going well so far. I created a basic GUI and can do simple operations ...
1
vote
1answer
121 views

Highlighting changing text in a java swing jtextcomponent

I am trying to highlight some code in a JEditorPane like this: import javax.swing.JEditorPane; import javax.swing.JFrame; import javax.swing.text.DefaultHighlighter; import ...
1
vote
1answer
97 views

Getting the current offset in the HTMLDocument of a JTextComponent

In a Swing application I'm using a JTextPane with an HTMLDocument backend. At one point I'm inserting some sort of placeholders programmatically into the document with document.insertString(...) ...
1
vote
1answer
390 views

How to change print params when using new java 1.6 JTextComponent print()

I have a JTextComponent (JTextArea). I am trying to print its contents with using the new 1.6 .print() functionality. This is working well. I am also doing this in a headless/non-interactive mode ...
1
vote
2answers
104 views

Getting an action after text is pasted into a JTextComponent (Java)

This really puzzles me. I have a JTextComponent for which I've added a right-click cut\copy\paste menu using a JPopupMenu and DefaultEditorKit.Cut\Copy\PasteAction(). JMenuItem cutItem = new ...
1
vote
2answers
205 views

How can I output only a certain number of digits after a decimal place in a JTextComponent?

I am using both JLabels and JTextFields, and need to be able to truncate my doubles to two decimal places when they are displayed by the application. How can I perform this truncation, preferably ...
1
vote
4answers
297 views

Dragging text from a Word document to a Java text component?

When you drag a block of text from a Word document into a Java text component, the text is removed from the Word document. This is obviously undesirable in some cases. Is there a way I can prevent ...
1
vote
1answer
285 views

Changing the font of text being typed in a JTextArea

I am working on a chat application and I want the user to be able to change their font while typing messages. I tried using the setFont() method but it changes the font for the entire text within ...
0
votes
2answers
38 views

Display and append Icons on JEditorPane/JTextArea with every icon displayed in newline?

I m trying to display System icons for file extention of JEditorpane i m able to display but only last icon get displayed ?I want to append and display each icon on newline? String ...
0
votes
0answers
56 views

Delaying method till an event

First of, I am new here, hence forgive me if I have repeated a question. I was not able to find a previous solution for this problem on this site, or elsewhere. I was working on using a ...
0
votes
3answers
468 views

java.lang.ClassCastException: javax.mail.internet.MimeMultipart cannot be cast to java.lang.String at NewClass.main(NewClass.java:34)

This is the code that is intended to fetch up the email from Gmail server. Along with it also brings the subject and the sender separately. The inbox that i am checking has 5 messages.(some read and ...
0
votes
1answer
51 views

Better choice: TextLayout or JTextComponent for an “ellipse with editable text” component?

If you've ever used Visio or a UML class diagram editor, you have an idea of what I'm trying to accomplish: Within a JFrame, users can add ellipses that enclose a small editable text field. These ...
-1
votes
1answer
49 views

Implement undo/redo for tabbed JEditorPanes

I'm developing a basic editor within my application, which allows to view several components within a JTabbedPane. Each tab holds a JScrollPane which contains a JEditorPane. Now I would like to ...
-1
votes
3answers
56 views

how to fit text within jtextcomponent

I am trying to develop an editor without scrollbars using jtextarea, so if the text is too long to fit within jtextarea it should be splitted into smaller substrings which could be edited within the ...