使用BlockingQueue下载PDF文件

时间:2016-02-17 10:09:48

标签: java android blockingqueue

我试图使用URLConnection下载pdf文件。这是我如何设置连接对象。

URL serverUrl = new URL(url);
urlConnection = (HttpURLConnection) serverUrl.openConnection();
urlConnection.setDoInput(true);
urlConnection.setRequestMethod("GET");
urlConnection.setRequestProperty("Content-Type", "application/pdf");
urlConnection.setRequestProperty("ENCTYPE", "multipart/form-data");
String contentLength = urlConnection.getHeaderField("Content-Length");

我从连接对象获得了输入流。

bufferedInputStream = new BufferedInputStream(urlConnection.getInputStream());

输出流写入文件内容。

File dir = new File(context.getFilesDir(), mFolder);
if(!dir.exists()) dir.mkdir();
final File f = new File(dir, String.valueOf(documentName));
f.createNewFile();
final BufferedOutputStream bufferedOutputStream = new BufferedOutputStream(new FileOutputStream(f, true)); //true for appendMode

创建BlockingQueue,以便执行读写操作的线程可以访问队列。

final BlockingQueue<ByteArrayWrapper> blockingQueue = new ArrayBlockingQueue<ByteArrayWrapper>(MAX_VALUE,true);
final byte[] dataBuffer = new byte[MAX_VALUE];

现在创建了从InputStream读取数据的线程。

Thread readerThread = new Thread(new Runnable() {
       @Override
       public void run() {
         try {
            int count = 0;
            while((count = bufferedInputStream.read(dataBuffer, 0, dataBuffer.length)) != -1) {
                 ByteArrayWrapper byteArrayWrapper = new ByteArrayWrapper(dataBuffer);
                 byteArrayWrapper.setBytesReadCount(count);
                 blockingQueue.put(byteArrayWrapper);
             }
             blockingQueue.put(null); //end of file
          } catch(Exception e) {
                 e.printStackTrace();
          } finally {
              try {
                 bufferedInputStream.close();
              } catch (IOException e) {
                  e.printStackTrace();
              }
          }
       }
 });

现在编写器线程读取这些文件内容。

Thread writerThread = new Thread(new Runnable() {
       @Override
       public void run() {
         try {
            while(true) {
               ByteArrayWrapper byteWrapper = blockingQueue.take();
               if(null == byteWrapper) break;
               bufferedOutputStream.write(byteWrapper.getBytesRead(), 0, byteWrapper.getBytesReadCount());
             }
             bufferedOutputStream.flush();
         } catch(Exception e) {
              e.printStackTrace();
         } finally {
              try {
                 bufferedOutputStream.close();
              } catch (IOException e) {
                  e.printStackTrace();
              }
         }
      }
});

最后,线程开始了。

readerThread.start();
writerThread.start();

理论上它应该从InputStream中读取文件并将其保存到目标文件中。但是,实际上,它会生成空白的pdf文件。在其他时候,它显示无效的pdf格式异常。文件大小与InputStream的内容长度匹配。我有什么遗失的吗?

2 个答案:

答案 0 :(得分:5)

我不熟悉ByteArrayWrapper。它只是持有对数组的引用吗?

public class ByteArrayBuffer {
    final private byte[] data;

    public ByteArrayBuffer(byte[] data) {
        this.data = data;
    }

    public byte[] getBytesRead() {
        return data;
    }

    /*...etc...*/
} 

如果是这样的话。这将是问题:所有ByteArrayWrapper对象都由同一个数组支持。这是由作家反复覆盖的。即使BlockingQueue做了将每个对象从一个线程安全地发布到另一个线程的艰苦工作。

最简单的修复可能是使ByteArrayWrapper有效地不可变,即在将其发布到另一个线程后不要更改它。在构造上获取阵列的副本将是最简单的:

public ByteArrayWrapper(byte[] data) {
    this.data = Arrays.copyOf(data, data.length);
}

另一个问题是“BlockingQueue不接受空元素”(参见BlockingQueue docs),因此“输入结束”的标记值不起作用。用

替换null
private static ByteArrayWrapper END = new ByteArrayWrapper(new byte[]{});

在适当的地方将解决这个问题。

通过对代码副本进行更改,我能够检索到PDF文件的忠实副本。

答案 1 :(得分:3)

尝试使用Android DownloadManagerhttp://developer.android.com/reference/android/app/DownloadManager.html),它用于在后台处理长时间运行的HTTP请求。 在这里,您无需考虑接收的字节,并且进度会显示在通知栏中。

这里有一个很好的教程:http://blog.vogella.com/2011/06/14/android-downloadmanager-example/