0

一个例子是一个简单的图像。

我尝试了很多东西,尽管很有意义,但它只是拒绝工作。

到目前为止我所做的是我能够抓取 25 张图片并将它们添加到

/sdcard/应用名称/sub/dir/filename.jpg

根据 DDMS,它们都出现在那里,但它们的文件大小始终为 0。

我猜这可能是因为我的输入流?

这是我处理下载和保存的函数。

public void DownloadPages()
{   
    for (int fileC = 0; fileC < pageAmount; fileC++)
    {

        URL url;
        String path = "/sdcard/Appname/sub/dir/";

        File file = new File(path, fileC + ".jpg");

        int size=0;
        byte[] buffer=null;

        try{
            url = new URL("http://images.bluegartr.com/bucket/gallery/56ca6f9f2ef43ab7349c0e6511edb6d6.png");
            InputStream in = url.openStream();

            size = in.available();  
            buffer = new byte[size];  
            in.read(buffer);  
            in.close();  
        }catch(Exception e){

        }

            if (!new File(path).exists())
                new File(path).mkdirs();

       FileOutputStream out;

       try{
           out = new FileOutputStream(file);
           out.write(buffer);  
           out.flush();  
           out.close();
       }catch(Exception e){

       }


    }

}

它只是在该目录中不断给我 25 个文件,但它们的所有文件大小都为零。我不知道为什么。这实际上与我在 java 程序中使用的代码相同。

附言...

如果你要给我一个解决方案......我已经尝试过这样的代码。它不起作用。

    try{
        url = new URL(urlString);
        in = new BufferedInputStream(url.openStream());
        fout = new FileOutputStream(filename);

        byte data[] = new byte[1024];
        int count;
        System.out.println("Now downloading File: " + filename.substring(0, filename.lastIndexOf(".")));
        while ((count = in.read(data, 0, 1024)) != -1){
            fout.write(data, 0, count);
        }
    }finally{
            System.out.println("Download complete.");
            if (in != null)
                    in.close();
            if (fout != null)
                    fout.close();
    }
}

这是我的目录的图像

http://oi48.tinypic.com/2cpcprm.jpg

4

2 回答 2

1

对您的第二个选项进行一些更改,按以下方式尝试,

byte data[] = new byte[1024];
long total = 0;

int count;

while ( ( count = input.read(data)) != -1 )
{
    total += count;
    output.write( data,0,count );
}

这在 while 语句中有所不同while ((count = in.read(data, 0, 1024)) != -1)

于 2012-11-18T05:57:05.087 回答
0

Using Guava something like this should work:

String fileUrl = "xxx";
File file = null;

InputStream in;
FileOutputStream out;
try {
  Uri url = new URI(fileUrl);
  in = url.openStream();
  out = new FileOutputStream(file)
  ByteStreams.copy(in, out);
} 
catch (IOException e) {
  System.out.println(e.toString());
}
finally {
  in.close();
  out.flush();
  out.close();
}
于 2012-11-18T06:24:27.770 回答