【问题标题】:Null object reference error on container.createIfNotExists();container.createIfNotExists() 上的空对象引用错误;
【发布时间】:2015-03-08 00:18:49
【问题描述】:

我正在尝试通过以下链接使用适用于 Android 应用的 Azure Blob 存储: http://azure.microsoft.com/en-in/documentation/articles/storage-java-how-to-use-blob-storage/

我正在使用 Android Studio

在我遇到异常之前我会很好:

container.createIfNotExists();

这行给出了错误:

Attempt to invoke interface method 'void com.android.okhttp.internal.http.Transport.writeRequestHeaders(com.android.okhttp.Request)' on a null object reference

以下是我的导入:

import com.microsoft.azure.storage.*;
import com.microsoft.azure.storage.blob.*;

java代码:

try{
            System.out.print("Code Progess 2 ");
            CloudStorageAccount account = CloudStorageAccount.parse(storageConnectionString);
            System.out.print("Code Progess 3 ");
            CloudBlobClient serviceClient = account.createCloudBlobClient();
            System.out.print("Code Progess 4 ");

            // Container name must be lower case.
            CloudBlobContainer container = serviceClient.getContainerReference("myimages");
            System.out.print("Code Progess 5 ");
            container.createIfNotExists();
            System.out.print("Code Progess 6 ");

            // Upload an image file.
            CloudBlockBlob blob = container.getBlockBlobReference("image1.jpg");
            System.out.print("Code Progess 7 ");
            File sourceFile = new File("<Path to local image storage>");
            System.out.print("Code Progess 8 ");
            blob.upload(new FileInputStream(sourceFile), sourceFile.length());
            System.out.print("Code Progess 9 ");

            // Download the image file.
            File destinationFile = new File(sourceFile.getParentFile(), "image1Download.tmp");
            System.out.print("Code Progess 10 ");
            blob.downloadToFile(destinationFile.getAbsolutePath());
            System.out.print("Code Progess 11 ");
        }

catch (Exception e) {
            System.out.print("Exception encountered: ");
            System.out.println(e.getMessage());
            System.exit(-1);
        }

logcat如下:

01-09 20:54:02.072    2271-2287/com.rollcall.blob W/art﹕ Verification of void com.microsoft.azure.storage.blob.CloudBlobContainer.create(com.microsoft.azure.storage.blob.BlobRequestOptions, com.microsoft.azure.storage.OperationContext) took 334.218ms
01-09 20:54:02.140    2271-2287/com.rollcall.blob W/art﹕ Unresolved exception class when finding catch block: javax.xml.stream.XMLStreamException
01-09 20:54:02.141    2271-2287/com.rollcall.blob I/System.out﹕ Code Progess 1 Code Progess 2 Code Progess 3 Code Progess 4 Code Progess 5 Exception encountered: Attempt to invoke interface method 'void com.android.okhttp.internal.http.Transport.writeRequestHeaders(com.android.okhttp.Request)' on a null object reference

谁能告诉我哪里出错了?

谢谢

【问题讨论】:

  • 向我们展示异常堆栈跟踪和相关代码。
  • 我已经添加了堆栈跟踪和代码。谢谢

标签: java azure-blob-storage


【解决方案1】:

您参考的入门指南是专门针对 Java 的。您的示例是否使用 Java 或 Android Azure 存储客户端库?有一个单独的 android Azure Storage 客户端库,您应该使用它来构建 Android 应用程序。

您可以查看 Github 存储库上的 readme document 以开始使用。使用 blob 的示例代码也可以在存储库 here

中找到

【讨论】:

  • 感谢 Vinay,存储库真的很有帮助:)
猜你喜欢
  • 2022-01-15
  • 2016-01-14
  • 2021-08-16
  • 1970-01-01
  • 2016-11-19
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2013-12-05
相关资源
最近更新 更多