Android examples for App:Assets File
List Asset File
/*//w ww . j a v a2 s . c om * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright 2012, Chun Xu, zuojisi@gmail.com * * This file is part of SimpleWebServer. * * SimpleWebServer is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * SimpleWebServer is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with SimpleWebServer. If not, see <http://www.gnu.org/licenses/>. * * - Author: Chun Xu * - Contact: zuojisi@gmail.com * - License: GNU Lesser General Public License (LGPL) * - Blog and source code availability: http://sws.pupfly.com/ */ //package com.java2s; import java.io.IOException; import java.io.InputStream; import android.content.res.AssetManager; public class Main { public static String[] List(AssetManager am, String uri) { uri = RemoveLastPathSeperator(uri); if (IsFolder(am, uri)) { try { return am.list(uri); } catch (IOException e) { return null; } } else { return null; } } public static String RemoveLastPathSeperator(String uri) { if (uri.endsWith("/")) { return uri.substring(0, uri.length() - 1); } else { return uri; } } public static boolean IsFolder(AssetManager am, String uri) { uri = RemoveLastPathSeperator(uri); try { InputStream is = am.open(uri); if (am.open(uri) == null) { return true; } else { is.close(); is = null; return false; } } catch (IOException e) { return true; } } }