Azure SDK for Java - 抛出InvalidKeyException的示例程序

时间:2016-09-06 14:16:19

标签: java azure azure-table-storage

使用Azure Storage SDK for Java,我尝试在Azure表存储上执行基本的创建,读取,更新和删除操作,如下面的链接所示: https://azure.microsoft.com/en-us/documentation/articles/storage-java-how-to-use-table-storage/

创建表的示例程序:

package com.azure.test;
import java.io.UnsupportedEncodingException;
import com.microsoft.azure.storage.*;
import com.microsoft.azure.storage.table.CloudTable;
import com.microsoft.azure.storage.table.CloudTableClient;
import com.microsoft.windowsazure.core.utils.Base64;

public class App 
{

    public static void main( String[] args ) throws StorageException,    UnsupportedEncodingException
{

    String storageConnectionString =
            "DefaultEndpointsProtocol=http;" +
            "AccountName=accountname;" + 
            "AccountKey=storagekey;"+
           "EndpointSuffix=table.core.windows.net"; 

    try
    {
        // Retrieve storage account from connection-string.
        CloudStorageAccount storageAccount =
           CloudStorageAccount.parse(storageConnectionString);

        CloudTableClient tableClient =               storageAccount.createCloudTableClient();

      //Create the table if it doesn't exist.
       String tableName = "MyTable";
       CloudTable cloudTable = tableClient.getTableReference(tableName);
       cloudTable.createIfNotExists();               

    }
    catch (Exception e)
    {
        // Output the stack trace.
        e.printStackTrace();
        System.out.println(e.getMessage());
        }
    }
}

代码似乎很容易理解。它将连接到Azure表存储,如果不存在具有给定名称的表,它将创建它。但我得到一个InvalidKeyException(下面粘贴了完整的异常)。

  

java.security.InvalidKeyException:Storage Key不是有效的base64编码字符串       在com.microsoft.azure.storage.StorageCredentials.tryParseCredentials(StorageCredentials.java:68)
      在com.microsoft.azure.storage.CloudStorageAccount.tryConfigureServiceAccount(CloudStorageAccount.java:408)
      在com.microsoft.azure.storage.CloudStorageAccount.parse(CloudStorageAccount.java:259)
      在com.azure.test.App.main(App.java:71)

我很惊讶使用Azure存储的人很少遇到这个问题。我尝试使用连接字符串中的编码密钥对存储密钥进行编码,但仍然没有用。

String encodedKey=Base64.encode(storageKey.getBytes())

String storageConnectionString =
            "DefaultEndpointsProtocol=http;" +
            "AccountName=accountname" + 
            "AccountKey="+encodedKey+
           "EndpointSuffix=table.core.windows.net;"; 

任何人都可以帮我这个吗?我在谷歌搜索了很多,我能找到一个用户在铁饼上提出类似的问题,但没有提供答案,或者说答案没有帮助。

2 个答案:

答案 0 :(得分:3)

更新:/解决问题

首先,我确保连接字符串中的所有属性都被';'分隔开来。正如Gaurav(下文)所建议的

事实证明我必须在我的程序中手动设置代理设置,因为我公司的工作机器正在使用代理连接到互联网。

System.getProperties().put("http.proxyHost", "myproxyHost");
System.getProperties().put("http.proxyPort", "myProxyPort");
System.getProperties().put("http.proxyUser", "myProxyUser");
System.getProperties().put("http.proxyPassword","myProxyPassword");

更新代理设置为我解决了这个问题。

答案 1 :(得分:1)

请更改以下代码行:

String storageConnectionString =
            "DefaultEndpointsProtocol=http;" +
            "AccountName=accountname" + 
            "AccountKey="+encodedKey+
           "EndpointSuffix=table.core.windows.net;"; 

String storageConnectionString =
            "DefaultEndpointsProtocol=http;" +
            "AccountName=accountname" + 
            ";AccountKey="+encodedKey+
           ";EndpointSuffix=core.windows.net;"; 

基本上在您的代码中,;AccountNameAccountKey之间没有分隔符(EndpointSuffix)。此外,如果您要连接到标准端点(core.windows.net),则无需在连接字符串中指定EndpointSuffix

最后,请确保帐户密钥正确无误。