- Add the Codota plugin to your IDE and get smart completions
private void myMethod () {ArrayList a =
new ArrayList<String>()
new ArrayList()
new ArrayList<Object>()
- Smart code suggestions by Codota
}
public static String[] listAssets(String path) throws IOException { String dir = assetsFolder() + path; String[] files = new File(dir).list(); Arrays.sort(files); return files; }
public static String[] listAssets(String path) throws IOException { String dir = assetsFolder() + path; String[] files = new File(dir).list(); Arrays.sort(files); return files; }
public static InputStream loadAsset(String path) throws IOException { return new FileInputStream(new File(assetsFolder() + path)); }
public static InputStream loadAsset(String path) throws IOException { return new FileInputStream(new File(assetsFolder() + path)); }