* the url
* @return the imported contents
*/
private final String importUrl(URL url)
{
UrlResourceStream resourceStream = new UrlResourceStream(url);
Charset charset = getCharset();
if (charset != null)
{
resourceStream.setCharset(charset);
}
String content = resourceStream.asString();
return content;
}