我创建了一个java程序,用于在Azure存储中创建新表人。但我无法创建一个新表。这是我的Java代码。
CloudStorageAccount storageAccount = CloudStorageAccount.parse(storageConnectionString);
CloudTableClient tableClient = storageAccount.createCloudTableClient();
String tableName = "people";
CloudTable cloudTable = new CloudTable(tableName,tableClient);
//A below line Produce the False.
cloudTable.createIfNotExists();
有人可以解释一下吗?
谢谢你