我看到了这个链接:https://azure.microsoft.com/en-us/documentation/articles/storage-java-how-to-use-table-storage/ 但是当我用android运行应用程序时,我的连接字符串有问题。
这是我的联系:
public static final String storageConnectionString = "DefaultEndpointsProtocol=http;"
+ "AccountName=demoeeg;"
+ "AccountKey=aDJtpWT2/UjBjrwt3BprpujNLNueTl5CjHkik6X6ELdLjGCU5jbnwXz8YCHnQs6wVO6YvY5sGUc7xWon/Iv3ug==";
在我设定的其他课程中:
private static final String USE_DEVELOPMENT_STORAGE_NAME = "UseDevelopmentStorage";
我的错误在哪里?
答案 0 :(得分:0)
不要设置使用开发存储。这意味着使用存储模拟器 - 这不适用于Android。我建议您查看azure-storage-android repo中的示例,这些示例将为您提供有关如何配置应用程序的一些建议。然后,您可以从操作方法中提取您想要的任何代码片段,这也会为您提供更多概念信息。