|
Apache JMeter 2.0.1.20050615 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.jmeter.protocol.http.parser.HTMLParser
HtmlParsers can parse HTML content to obtain URLs.
Nested Class Summary | |
static class |
HTMLParser.Test
|
Constructor Summary | |
protected |
HTMLParser()
Protected constructor to prevent instantiation except from within subclasses. |
Method Summary | |
Iterator |
getEmbeddedResourceURLs(byte[] html,
URL baseUrl)
Get the URLs for all the resources that a browser would automatically download following the download of the HTML content, that is: images, stylesheets, javascript files, applets, etc... |
Iterator |
getEmbeddedResourceURLs(byte[] html,
URL baseUrl,
Collection coll)
Get the URLs for all the resources that a browser would automatically download following the download of the HTML content, that is: images, stylesheets, javascript files, applets, etc... |
abstract Iterator |
getEmbeddedResourceURLs(byte[] html,
URL baseUrl,
URLCollection coll)
Get the URLs for all the resources that a browser would automatically download following the download of the HTML content, that is: images, stylesheets, javascript files, applets, etc... |
static HTMLParser |
getParser()
|
static HTMLParser |
getParser(String htmlParserClassName)
|
protected boolean |
isReusable()
Parsers should over-ride this method if the parser class is re-usable, in which case the class will be cached for the next getParser() call. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
protected HTMLParser()
Method Detail |
public static final HTMLParser getParser()
public static final HTMLParser getParser(String htmlParserClassName)
public Iterator getEmbeddedResourceURLs(byte[] html, URL baseUrl) throws HTMLParseException
URLs should not appear twice in the returned iterator.
Malformed URLs can be reported to the caller by having the Iterator return the corresponding RL String. Overall problems parsing the html should be reported by throwing an HTMLParseException.
html
- HTML codebaseUrl
- Base URL from which the HTML code was obtained
HTMLParseException
public abstract Iterator getEmbeddedResourceURLs(byte[] html, URL baseUrl, URLCollection coll) throws HTMLParseException
All URLs should be added to the Collection.
Malformed URLs can be reported to the caller by having the Iterator return the corresponding RL String. Overall problems parsing the html should be reported by throwing an HTMLParseException. N.B. The Iterator returns URLs, but the Collection will contain objects of class URLString.
html
- HTML codebaseUrl
- Base URL from which the HTML code was obtainedcoll
- URLCollection
HTMLParseException
public Iterator getEmbeddedResourceURLs(byte[] html, URL baseUrl, Collection coll) throws HTMLParseException
html
- HTML codebaseUrl
- Base URL from which the HTML code was obtainedcoll
- Collection - will contain URLString objects, not URLs
HTMLParseException
protected boolean isReusable()
|
Apache JMeter 2.0.1.20050615 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |