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

org.unix4j.io.URLInput Maven / Gradle / Ivy

There is a newer version: 0.6
Show newest version
package org.unix4j.io;

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

/**
 * Input device based on a {@link URL}.
 */
public class URLInput extends StreamInput {
	
	public URLInput(URL url) {
		super(openStream(url));
	}

	private static InputStream openStream(URL url) {
		try {
			return url.openStream();
		} catch (IOException e) {
			throw new RuntimeException(e);
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy