Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
489 views

Access/Change JEditorPane's html loaded elements + HTMLEditorKit problem with Unicode (Java)

that's going to be a long question so bear with me :) My Application I'm developing a Java (with JFrame GUI) desktop application that does the following: Scan (.txt) files. Parses some numbers ...
3
votes
5answers
2k views

Convert HTML to plain text in Java

I need to convert HTML to plain text. My only requirement of formatting is to retain new lines in the plain text. New lines should be displayed not only in the case of < br > but other tags, eg. ...
3
votes
1answer
1k views

Insert HTML into the Body of an HTMLDocument

This seems like such a simple question, but I'm having such difficulty with it. Problem: I have some text to insert into an HTMLDocument. This text sometimes specifies some html as well. E.G.: ...
3
votes
3answers
1k views

Where can I find a good HTMLEditorKit tutorial/reference, which actually explains how to edit HTML documents?

My intention is to edit HTML documents, including modifying existing elements, deleting elements and inserting new ones. I've read HTMLEditorKit's and related classes' documentation, as well as the ...
2
votes
1answer
105 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
1answer
32 views

How to get a specific action from the HTMLEditorKit?

I want to create a simple test application with a JEditorPane displaying some HTML content and a button which makes the selected text bold. The HTMLEditorKit already provides the necessary action for ...
2
votes
2answers
101 views

JTextPane with custom document and editor does not display icons correctly

We are implementing a very small messenger like application in Java and are using a JTextPane for our messages panel. Now, we are trying to replace common smileys with .gif files and we use some ...
2
votes
2answers
199 views

JEditorPane, HTMLEditorKit - custom action inserting custom tag

I'm faithing with JEditorPane. I need simple editor. I've solved the problem with loading and modified HTML containing custom (two) tags (see my older post). It displays the document properly and I ...
1
vote
0answers
25 views

Java Swing: GlyphView : StateInvariantError after deletion of ordered/unordered list (HTMLDocument)

I don't think this is a new issue. But it seems that there is an error that comes up whenever an ordered/unordered list in JTextPane (EditorKit -> HTMLEditorKit, Document -> HTMLDocument) is deleted ...
1
vote
1answer
115 views

HTMLEditorKit modify my text in JEditorPane HTML

I'm using a JTextPane to edit HTML and when I use getText() and setText() methods it changes my text. e.g If I set this text with setter method. <html> <head> </head> <body ...
1
vote
2answers
90 views

How to open HTML file having another extension in JTextPane

I have a HTML file and I need to display it in JTextPane. editor.setPage("file:///" + new File("test-resources/test.html").getAbsoluteFile()); This works properly. It uses my modified HTML editor ...
1
vote
1answer
162 views

HTML ParserDelegator and ParserCallback not working

so what I'm trying to do is pretty simple. I'm parsing an HTML document for script tags, using the ParserDelegator, and using a ParserCallback to spit out the script tags. But when I run this program, ...
1
vote
2answers
228 views

Disabling scrolling to end of text in JEditorPane

Hi I used a JEditorPane with HTMLEditorKit to showing HTML text with ability to wrap text. The problem is when I set it's content using .setText method it automatically scrolls to the end of that ...
1
vote
2answers
490 views

Why is Swing Parser's handleText not handling nested tags?

I need to transform some HTML text that has nested tags to decorate 'matches' with a css attribute to highlight it (like firefox search). I can't just do a simple replace (think if user searched for ...
0
votes
0answers
36 views

Extendable HTML Editor with Eclipse

I have been looking for an Eclipse plug-in to edit HTML pages and came across many frameworks/plug-ins. Frameworks like Vaadin/Zk and plug-ins like Amateras are good to use and have good interface. ...
0
votes
0answers
22 views

HTMLEditorKit triggers lookupAllHostAddr and slow down the app

When I want to dynamically insert HTML code in my HTML Editor kit : HTMLEditorKit kit = new HTMLEditorKit(); kit.insertHTML(doc, doc.getLength(), chatContent , 0, 0, null); It always trigger a : ...
0
votes
2answers
119 views

JEditorPane and source of HTML element

I have (still) problems with HTMLEditorKit and HTMLDocument in Java. I can only set the inner HTML of an element, but I cannot get it. Is there some way, how to get a uderlying HTML code of an ...
0
votes
0answers
37 views

Alignment is working only once.After that it is not working

Below is the code which i use for LeftAlign Action and same for other two alignmnet.When I save data 1st time. It will work perfectly. button.addActionListener(new ...
0
votes
0answers
75 views

when is HTMLEditorKit.ParserCallback finished

The following callback parses a page and produces a List. When callback.getList() is reached, it appears the callback is still executing since the list has varying number of entries depending on the ...
0
votes
2answers
95 views

Remove HTML remove aligment using Java

I Have faces a issue with removeing alignment In HTML document. <html> <head> </head> <body> <p style="margin-top: 0" align="center"> Hello World ...
0
votes
1answer
347 views

Formatting text with HTML in a JEditorPane?

I am trying to make a simple email client in Java Swing. I want to allow users to format their email in any way they want, like making some parts of the text bold, other parts italic, etc. In other ...
0
votes
1answer
508 views

Q about HTMLDocument, HTMLEditorKit, and blank spaces

When I run the following code: import java.io.IOException; import java.io.Reader; import java.io.StringReader; import javax.swing.text.BadLocationException; import javax.swing.text.EditorKit; import ...