Java URL Connection getUrlAsProperties(String urlString)

Here you can find the source of getUrlAsProperties(String urlString)

Description

get Url As Properties

License

Apache License

Declaration

public static Properties getUrlAsProperties(String urlString)
            throws IOException 

Method Source Code

//package com.java2s;
/**/*from  w  ww. j a v a  2 s. c  o m*/
 *    Copyright 2009-2015 the original author or authors.
 *
 *    Licensed under the Apache License, Version 2.0 (the "License");
 *    you may not use this file except in compliance with the License.
 *    You may obtain a copy of the License at
 *
 *       http://www.apache.org/licenses/LICENSE-2.0
 *
 *    Unless required by applicable law or agreed to in writing, software
 *    distributed under the License is distributed on an "AS IS" BASIS,
 *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *    See the License for the specific language governing permissions and
 *    limitations under the License.
 */

import java.io.IOException;
import java.io.InputStream;

import java.net.URL;
import java.net.URLConnection;

import java.util.Properties;

public class Main {
    public static Properties getUrlAsProperties(String urlString)
            throws IOException {
        Properties props = new Properties();
        InputStream in = getUrlAsStream(urlString);
        props.load(in);
        in.close();
        return props;
    }

    public static InputStream getUrlAsStream(String urlString)
            throws IOException {
        URL url = new URL(urlString);
        URLConnection conn = url.openConnection();
        return conn.getInputStream();
    }
}

Related

  1. getStreamWithTimeOut(String stringUrl, Integer timeOutInMilli)
  2. getString(URL url)
  3. getType(URLConnection connection)
  4. getUrl(String serverName, String docid, String pageid)
  5. getURL(String url)
  6. getUrlContent(String urlAddress)
  7. getURLContents(URL u, Map data)
  8. getURLContentsAsString(URL url)
  9. getURLDataList(URL StrurlStringing)