Tagged Questions
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
1answer
67 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.
...
2
votes
1answer
130 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 ...
1
vote
2answers
139 views
Changing the font of a text in a JTextPane dynamically
I want to change the certain texts written on a JTextPane dynamically. I have a String array containing the words which should be changed
String ListMethod [] = {"forward", "backward", "left", ...
3
votes
2answers
776 views
jeditorPane javascript and css support
I am working on Swing using JEditorPane but its not supporting the java script or some advanced tag like etc and not supporting the Color , font style size etc.
Is there any solution so that jeditor ...
2
votes
1answer
52 views
Java apply HTML to a selected text
I wanted to know if there is a way that I can apply basic HTML to a text pane or text editor using a Highlighter. My objective is to basically do a text editor using basic HTML. For example a user ...
5
votes
2answers
756 views
Adding mouselistener to JLabel/JButton inserted in JTextPane
I have a problem where when I try and add a mouselistener to a JLabel or JButton in a JTextPane I get the error "cannot be converted to Mouselistener by invocation conversion". I would prefer to have ...
0
votes
2answers
580 views
How do I read a HTML String into a JEditorPane/JTextPane?
Pretty self explanatory, I have a string that is HTML, how do i draw this onto a JEditorPane/JTextPane?
9
votes
1answer
1k views
JTextPane/JEditorPane and weird text issue
I am creating a simple chat program that I want to eventually show html links. My problem right now is that I can't get the text to appear next to the users name as I want it to.
I want the user's ...
1
vote
2answers
564 views
How to create formatted text to show in a Java Swing Component (JTextPane, JEditorPane…)
I've searched and researched in everywhere I could to find an answer with no result. So I ask for help once more.
I want to show formatted text in a desktop java swing application. This text would be ...
2
votes
2answers
125 views
Text disappear after Component change size
I create a jTable, and TableCellRenderer, TableCellEditor on it. I need to put there editable (with text/html context type) JEditorPane. When i write some text inside and resize component, text ...
1
vote
2answers
439 views
JTextPane or JEditorPane for a Chatroom
I have to make a chatroom like this one :
The message displayed also have to show the smileys and everything myst be copy/pastable like in Skype.
I don't know what to choose between the JEditor ...
0
votes
1answer
141 views
Generated code preview in netbeans. How to make effect like that?
Some time ago I saw a nice effect in netbeans IDE. When my cursor stops on the Generated Code text (e.g. in generated JFrame), some kind of hint (preview of generated code) is visible (has grey ...
4
votes
1answer
1k 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
462 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 ...
1
vote
4answers
121 views
How to load a file across the network and handle it as a String
I would like to display the contents of the url in a JTextArea. I have a url that points to an XML file, I just want to display the contents of the file in JTextArea. how can I do this?
2
votes
1answer
216 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 ...
1
vote
1answer
789 views
How can I tell if a JEditorPane/TextPane document or page has finished loading?
I'm trying to load a URL into a JEditorPane or JTextPane but the URL is a dynamically generated PHP page. I then want to process the output from the PHP page in my Java application. The PHP page will ...
1
vote
1answer
1k views
displaying links in java's JTextPane without html
I need to take text from a source as plain text and display it in a JTextPane or JEditorPane. The source text is not HTML but will contain URLs between square brackets which need to be displayed and ...