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

android.content.res.AssetManager Maven / Gradle / Ivy

There is a newer version: 0.3.3
Show newest version
package android.content.res;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;

public class AssetManager {
    public InputStream open(String path) throws FileNotFoundException {
        return new FileInputStream(new File(path));
    }

    public String[] list(String path) {
        return new File(path).list();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy