我尝试使用此代码下载图像并将其保存在以下行中:
OutputStream os =new FileOutputStream(f);
我在emulator.my应用程序上尝试了此操作,但出现异常,没有权限保存到此路径:
java.io.FileNotFoundException: /mnt/sdcard/InterFlora/1221618532: open failed: EACCES (Permission denied)
我也添加了这一行:
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
这是代码:
RetreiveImage extends AsyncTask<String, Void,Bitmap> {
Item m_item;
File f;
public RetreiveImage(Item aItem , File aFile){
m_item = aItem;
f = File (m_Sdcard.getAbsolutePath() + "/myFolder");
}
@Override
protected Bitmap doInBackground(String... params) {
try
{
Bitmap bitmap=null;
InputStream is=new URL(m_item.small).openStream();
OutputStream os =new FileOutputStream(f);
os.close();
return bitmap;
}
catch (MalformedURLException e) {
return null;
} catch (IOException e) {
return null;
}
}
}
File m_Sdcard = Environment.getExternalStorageDirectory();
File cacheDir =new File (m_Sdcard.getAbsolutePath() + "/MyFolder");
if(!cacheDir.exists())
cacheDir.mkdirs();
Try this works..
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.URL;
import java.net.URLConnection;
import android.app.Activity;
import android.app.Dialog;
import android.app.ProgressDialog;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.os.AsyncTask;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class main extends Activity {
/** Called when the activity is first created. */
public static final int DIALOG_DOWNLOAD_PROGRESS = 0;
private Button startBtn;
private ProgressDialog mProgressDialog;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
startBtn = (Button)findViewById(R.id.startBtn);
startBtn.setOnClickListener(new OnClickListener(){
public void onClick(View v) {
startDownload();
}
});
}
private void startDownload() {
String url = "http://farm1.static.flickr.com/114/298125983_0e4bf66782_b.jpg";
new DownloadFileAsync().execute(url);
}
@Override
protected Dialog onCreateDialog(int id) {
switch (id) {
case DIALOG_DOWNLOAD_PROGRESS:
mProgressDialog = new ProgressDialog(this);
mProgressDialog.setMessage("Downloading file..");
mProgressDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
mProgressDialog.setCancelable(false);
mProgressDialog.show();
return mProgressDialog;
default:
return null;
}
}
class DownloadFileAsync extends AsyncTask<String, String, String> {
@Override
protected void onPreExecute() {
super.onPreExecute();
showDialog(DIALOG_DOWNLOAD_PROGRESS);
}
@Override
protected String doInBackground(String... aurl) {
int count;
try {
URL url = new URL(aurl[0]);
URLConnection conexion = url.openConnection();
conexion.connect();
int lenghtOfFile = conexion.getContentLength();
Log.d("ANDRO_ASYNC", "Lenght of file: " + lenghtOfFile);
FileOutputStream obj;
InputStream input = new BufferedInputStream(url.openStream());
//obj=openFileOutput("some_photo_from_gdansk_poland.jpg", Context.MODE_PRIVATE);
String Path="/sdcard/";//"/data/data/com.server/";
OutputStream output = new FileOutputStream(Path+"some_photo_from_gdansk_poland.jpg");//obj
byte data[] = new byte[1024];
long total = 0;
while ((count = input.read(data)) != -1) {
total += count;
publishProgress(""+(int)((total*100)/lenghtOfFile));
output.write(data, 0, count);
}
output.flush();
output.close();
input.close();
} catch (Exception e) {}
return null;
}
protected void onProgressUpdate(String... progress) {
Log.d("ANDRO_ASYNC",progress[0]);
mProgressDialog.setProgress(Integer.parseInt(progress[0]));
}
@Override
protected void onPostExecute(String unused) {
dismissDialog(DIALOG_DOWNLOAD_PROGRESS);
}
}
}
and add android.permission.WRITE_EXTERNAL_STORAGE
当我运行progressdialog出现在屏幕上时,它突然停止运行,并发出通知“应用程序停止了,再试一次”,然后我在android manitor上重复了这个错误,当然我首先要做的是:
我一直在寻找保存音频到SdCard。 我还试图保存以下内容: 在这两种情况下,它都起作用,但会保存到内部存储中。从不使用SD卡 我使用getExternalFilesDirs()来创建。但如果用户卸载应用程序,则会丢失文件。 我不想那样。 如何将音频保存在SD卡公用文件夹中或创建新文件夹。 任何时候它都会创建到内部存储中。 有什么解决办法吗??? 我尝试了这个,我可以在SD卡中创建一个文档。还有一
目前,我的(使用的是Stackoverflow,我自己没有完整地编写)代码如下所示: 我得到错误:“打开失败;EACCES(权限被拒绝)”。 我的舱单是这样的:
本文向大家介绍android将Bitmap对象保存到SD卡中的方法,包括了android将Bitmap对象保存到SD卡中的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了android将Bitmap对象保存到SD卡中的方法。分享给大家供大家参考。具体如下: 希望本文所述对大家的Android程序设计有所帮助。
我现在正为一个问题苦苦挣扎,希望你能帮我解决...基本上,我试图通过这种方式从手机的内部图库中获取一些图像 意向意向=新意向(); Intent.SetAction(Intent.Action_Get_Content); startActivityForResult(intent.createchooser(intent,“select picture”),SELECT_IMAGE); 但是当我使