Beispiel #1
0
  public static String URLFromURI(URI uri) {
    String ret = "";

    if (uri == null) {
      log.error("");
    }

    ret += uri.getScheme() + "://" + uri.getHost() + uri.getPath();

    if (uri.getQuery() != null && uri.getQuery().length() > 0) ret += "?" + uri.getQuery();

    return ret;
  }