首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > 移动开发 >

图片下载工具种:BitmapUtil

2012-07-03 
图片下载工具类:BitmapUtilhttp://blog.csdn.net/flying_vip_521/article/details/7656413Log输出到sdcard

图片下载工具类:BitmapUtil
http://blog.csdn.net/flying_vip_521/article/details/7656413



GSPUtil


WebService for Android

获取手机ip地址工具类
public class ClassUtils {    /**     * Checks if a class is a subclass of a class with the specified name. Used     * as an instanceOf without having to load the class, useful when trying to     * check for classes that might not be available in the runtime JRE.     *      * @param clazz     *            The class to check     * @param className     *            The class name to look for in the super classes     * @return true if the class extends a class by the specified name.     */    public static boolean extendsClass(final Class<?> clazz, String className) {        Class<?> superClass = clazz.getSuperclass();        while (superClass != null) {            if (superClass.getName().equals(className)) {                return true;            }            superClass = superClass.getSuperclass();        }        return false;    }}


android时时监听log

热点排行