Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Java > get the HTML code from HTMLEditorKit

Reply
Thread Tools

get the HTML code from HTMLEditorKit

 
 
plutian
Guest
Posts: n/a
 
      10-15-2003
Hi all,

I'm building a simple HTML editor using HTMLEditorKit. There are several
questions I would like to ask.

1. When I selected some text or object in the html, how could I get the html
code behind?

2. How can I insert the html code into the original html document with
appropriate location?

Thx,
Plutian


 
Reply With Quote
 
 
 
 
ak
Guest
Posts: n/a
 
      10-15-2003

"plutian" <> schrieb im Newsbeitrag
news:bmies5$55d$...
> Hi all,
>
> I'm building a simple HTML editor using HTMLEditorKit. There are several
> questions I would like to ask.
>
> 1. When I selected some text or object in the html, how could I get the

html
> code behind?
>
> 2. How can I insert the html code into the original html document with
> appropriate location?


public void insertHTML(HTMLDocument doc,
int offset,
String html,
int popDepth,
int pushDepth,
HTML.Tag insertTag)
throws BadLocationException,
IOException


Inserts HTML into an existing document.



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to extract all link in a HTML file by using HTMLEditorKit tintac Java 1 01-29-2005 12:14 PM
ridiculous - javax.swing.text.html.HTMLEditorKit.Parser needs X11 server to work Nebojsa Topolscak Java 3 01-14-2005 10:43 PM
JEditorpane, unable to insert or switch content type using the htmleditorkit -> bug? Gerrit Hulleman Java 3 07-27-2004 03:11 PM
Getting HTML title using HTMLEditorKit.ParserCallback Bill Tschumy Java 1 04-22-2004 09:29 PM
HTMLEditorKit is throwing exception Mike Mimic Java 8 04-21-2004 10:14 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57