Package cn.dreampie.common.web.resource

Examples of cn.dreampie.common.web.resource.HttpResource


  }

  private Resource getImportedResource(String importedResource) throws IOException {
    try {
      if (importedResource.startsWith("http:") || importedResource.startsWith("https:")) {
        return new HttpResource(importedResource);
      } else {
        return resource.createRelative(importedResource);
      }
    } catch (URISyntaxException e) {
      throw (IOException) new IOException(importedResource).initCause(e);
View Full Code Here

TOP

Related Classes of cn.dreampie.common.web.resource.HttpResource

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.