Re: [Htmlparser-user] how to get <embed> tag
Brought to you by:
derrickoswald
From: Derrick O. <der...@ro...> - 2006-04-18 01:05:25
|
You should be able to use a NodeNameFilter and then get the SRC attribute. parser.parse (new NodeNameFilter ("EMBED")).elementAt (0).getAttribute ("SRC"); Wen <log...@ya...> wrote: Hi, I'm trying to get the src link in embed tag. EX. height=400 type="text/plain; charset=UTF-8"> I checked the library, there is no a tag called EmbedTag, so I can't use NodeFilter. Does any one have ideas on how to get it. Thanks in advanced. Wen |