Android 我在我的代码中写了从服务器下载 mp3 文件的一些错误 [关闭]
Posted
技术标签:
【中文标题】Android 我在我的代码中写了从服务器下载 mp3 文件的一些错误 [关闭]【英文标题】:Android i wrote download mp3 file from server some error in my code [closed] 【发布时间】:2012-05-27 07:30:01 【问题描述】:错误:java.io.FileNotFoundException:/mnt/sdcard/sura-001.mp3(权限被拒绝)
【问题讨论】:
【参考方案1】:您可以从以下网址获取帮助
java.io.FileNotFoundException: (Permission denied)
http://codingexplorer.wordpress.com/2009/07/13/java-io-filenotfoundexception-with-permission-denied/
【讨论】:
【参考方案2】: <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
检查是否添加了权限...
更新::
这就是清单文件的样子
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.com.com"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".Activity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
</manifeast>
【讨论】:
如果上述方法不能解决您的问题,请尝试更改不包含特殊字符的文件名,或者如果您对路径进行了硬编码,请使用 Environment.getExternalStorageState() 来引用外部目录。以上是关于Android 我在我的代码中写了从服务器下载 mp3 文件的一些错误 [关闭]的主要内容,如果未能解决你的问题,请参考以下文章
我在VS2008中写了个winform程序,想实现关闭按钮,就最小化到托盘