Java URL Connection getBaseAuthInputStreamFromURL(String query, String basicAuthString)

Here you can find the source of getBaseAuthInputStreamFromURL(String query, String basicAuthString)

Description

get Base Auth Input Stream From URL

License

Open Source License

Declaration

private static InputStream getBaseAuthInputStreamFromURL(String query, String basicAuthString)
            throws IOException 

Method Source Code

//package com.java2s;
/*/*from  www  . ja v a 2  s  . c  o m*/
 * Copyright (c) 2008-2017, Hazelcast, Inc. All Rights Reserved.
 *
 * 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;

public class Main {
    private static InputStream getBaseAuthInputStreamFromURL(String query, String basicAuthString)
            throws IOException {
        URL url = new URL(query);

        URLConnection uc = url.openConnection();
        uc.setRequestProperty("Authorization", basicAuthString);

        return uc.getInputStream();
    }
}

Related

  1. doPost(String url, String params, String charset)
  2. findClasses(URL resource, String packageName, boolean annotated)
  3. findClasspathUrls(ClassLoader classLoader)
  4. findResourceInJarPackage(URL url, String packageName, String packageDirName, boolean recursive, List resources)
  5. getAsStream(URL url)
  6. getBaseURL(URLConnection conn)
  7. getBooleanFromUrl(String url)
  8. getBytes(String urlStr)
  9. getCharset(URLConnection connection)