会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
♂小旭
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
2013年11月6日
Android获取本地图片并显示
摘要: Bitmap bm = BitmapFactory.decodeFile(DATABASE_PATH + "/himi/picture/s_zhongdianzhibiao.gif");btn1.setBackgroundDrawable(new BitmapDrawable(bm));
阅读全文
posted @ 2013-11-06 16:22 ♂小旭
阅读(486)
评论(0)
推荐(0)
编辑
Android创建文件或文件夹
摘要: File path = new File(DATABASE_PATH + "/himi");File f = new File(DATABASE_PATH + "/SYIMS/dataBase.db");// 创建文件 if (!path.exists()) {// 目录存在返回false path.mkdirs();// 创建一个目录 } if (!f.exists()) {// 文件存在返回false try { f.createNewFile();//创建文件 } catch (IOException e) { // TODO Auto-gener
阅读全文
posted @ 2013-11-06 16:10 ♂小旭
阅读(2798)
评论(0)
推荐(1)
编辑
Android 删除SD卡中的文件和文件夹
摘要: //folderPath为文件路径public void delFolder(String folderPath) { try { delAllFile(folderPath); //删除完里面所有内容 String filePath = folderPath; filePath = filePath.toString(); java.io.File myFilePath = new java.io.File(filePath); myFilePath.delete(); //删除空文件夹 } catch (Exception e) { System.out.println("删除文
阅读全文
posted @ 2013-11-06 15:43 ♂小旭
阅读(1770)
评论(0)
推荐(0)
编辑