码迷,mamicode.com
首页 >  
搜索关键字:getexternalstoragedirectory    ( 94个结果
中兴ZTE手机sdcard路劲的怪问题
测试机:     ZTE U880 现象:      用Environment.getExternalStorageDirectory()取到的路径是/mnt/sdcard 真相:       /mnt/sdcard/是一个空文件夹!真实路径是/mnt/sdcard-ext  解决: 需要根据Build.MODEL来特殊处理了,如果是zte的设备就直接将s...
分类:移动开发   时间:2015-04-08 11:03:20    阅读次数:132
android 文件断点下载库使用
类库地址:https://github.com/sungerk/android-downloader 1.首先加入连接网络权限  2.文件读写操作权限  3.使用方法如下: String urlString = "url"; String localPath = Environment.getExternalStorageDirectory() ...
分类:移动开发   时间:2015-04-08 09:16:30    阅读次数:200
apk安装与卸载
public void installApk() { /* * */ String fileName = Environment.getExternalStorageDirectory() + "/m...
分类:其他好文   时间:2015-04-07 09:37:22    阅读次数:113
android 开发-文件存储之读写sdcard
android提供对可移除的外部存储进行文件存储。在对外部sdcard进行调用的时候首先要调用Environment.getExternalStorageState()检查sdcard的可用状态。通过Environment.getExternalStorageDirectory()得到Sdcar.....
分类:移动开发   时间:2015-03-29 12:09:28    阅读次数:149
[Android开发学习] day06
对于android里的接口类,直接new!!!   手机SD卡路径获取 通过代码,获取sd卡路径。 获取SDcard:mnt/sdcard   注意要补充上【反斜杠】!!! String path=Environment.getExternalStorageDirectory().getAbsolutePath(); System.out.println(path); 获取SDca...
分类:移动开发   时间:2015-03-11 00:47:53    阅读次数:275
Permission Denial: not allowed to send broadcast android.intent.action.MEDIA_MOUNTED
当在Android4.4上进行图片的扫描功能开发时一般会使用:sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse("file://"+ Environment.getExternalStorageDirectory()+ picPath)));的广播 因为Android4.4中限制了系统应用才有权限使用广播通知系统扫描S...
分类:移动开发   时间:2015-02-28 16:28:06    阅读次数:531
内存卡的数据保存与读取
,内存卡2.1数据保存Filefile=newFile(Environment.getExternalStorageDirectory(),name);try{FileOutputStream fos=newFileOutputStream(file);fos.write(content.getBytes());fos.close(); Toast.makeText(getApplicationContext(),"保存成功",200).show();}catch(Exceptione)..
分类:其他好文   时间:2015-02-08 23:21:23    阅读次数:190
数据存储之--内存卡的存储
1,数据的保存Filefile=newFile(Environment.getExternalStorageDirectory(),name);try{FileOutputStreamfos=newFileOutputStream(file);fos.write(content.getBytes());fos.close();Toast.makeText(getApplicationContext(),"保存成功",200).show();}catch(Exceptione){Toast...
分类:其他好文   时间:2015-02-07 23:06:36    阅读次数:342
Android入门开发之SD卡读写操作(转)
SD卡的读写是我们在开发android 应用程序过程中最常见的操作。下面介绍SD卡的读写操作方式: 1. 获取SD卡的根目录[java]view plaincopyStringsdCardRoot=Environment.getExternalStorageDirectory().getAbsol....
分类:移动开发   时间:2015-01-09 12:29:53    阅读次数:157
Android SD卡上文件
1. 得到存储设备的目录:/SDCARD(一般情况下)SDPATH=Environment.getExternalStorageDirectory()+"/";2. 判断SD卡上的文件夹是否存在:通过File对象的exists()方法。 /** * 判断文件是否已经存在; * / pu...
分类:移动开发   时间:2015-01-06 17:50:54    阅读次数:128
94条   上一页 1 ... 4 5 6 7 8 ... 10 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!