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

com.github.davidmoten.security.Classpath Maven / Gradle / Ivy

There is a newer version: 0.1.9
Show newest version
package com.github.davidmoten.security;

import java.io.IOException;

import com.google.common.io.ByteStreams;

public final class Classpath {

	public static byte[] bytesFrom(Class cls, String resource) {
		try {
			return ByteStreams.toByteArray(cls.getResourceAsStream(resource));
		} catch (IOException e) {
			throw new RuntimeException(e);
		}
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy