All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.datalking.io.UrlResource Maven / Gradle / Ivy

The newest version!
package com.github.datalking.io;

import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.net.URLConnection;

/**
 * 通过url获取的资源
 */
public class UrlResource implements Resource {

    private final URL url;

    public UrlResource(URL url) {
        this.url = url;
    }

    @Override
    public InputStream getInputStream() throws IOException {
        URLConnection urlConnection = url.openConnection();
        urlConnection.connect();
        return urlConnection.getInputStream();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy