com.github.chen0040.benchmarks.ResourceFileUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-datasets-discrete-optimization Show documentation
Show all versions of java-datasets-discrete-optimization Show documentation
Benchmarks for discrete optimization in Java
The newest version!
package com.github.chen0040.benchmarks;
import java.io.InputStream;
/**
* Created by xschen on 14/6/2017.
*/
public class ResourceFileUtils {
public static InputStream getResource(String filename) {
return ResourceFileUtils.class.getClassLoader().getResourceAsStream(filename);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy