需要添加哪个Maven依赖项才能使用CloudBlobContainer fetchattributes()

时间:2016-07-26 12:07:04

标签: java azure azure-storage azure-storage-blobs

我想使用fetchAttribute()的{​​{1}}。 我的问题是我需要使用哪种依赖方法。

我使用Here

中的代码

以下是我已经在pom.xml中添加的依赖项

CloudBlobContainer

仍显示<dependency> <groupId>com.microsoft.azure</groupId> <artifactId>azure-storage</artifactId> <version>4.3.0</version> </dependency> 下的红线并显示未定义的

2 个答案:

答案 0 :(得分:0)

可能只是你提到的那个,根据:

http://search.maven.org/#search%7Cga%7C1%7Cc%3A%22CloudBlobContainer%22

也许您的工件无法正确解决。

检查以下内容:它是否在您的本地Maven存储库中?你能打开它并找到相应的类文件吗?

答案 1 :(得分:0)

@AnandDeshmukh,var x = 5000; var a = "5,000,000" var y = "$5,,,000,000" var z = "500,000" var c = "c231" console.log(x," Valid", /^\$?\d+(,\d{3})*(\.\d*)?$/.test(x)) console.log(a," Valid", /^\$?\d+(,\d{3})*(\.\d*)?$/.test(a)) console.log(y," Valid", /^\$?\d+(,\d{3})*(\.\d*)?$/.test(y)) console.log(z," Valid", /^\$?\d+(,\d{3})*(\.\d*)?$/.test(z)) console.log(c," Valid", /^\$?\d+(,\d{3})*(\.\d*)?$/.test(c)) 中添加的依赖项是正确的(请参阅here),但文章Set and Retrieve Properties and Metadata中的代码是用C#编写的,而不是Java。

以下Java代码,请参阅http://azure.github.io/azure-storage-java/com/microsoft/azure/storage/blob/CloudBlobClient.html上的pom.xml课程的方法。

CloudBlobContainer

作为参考,您可以在http://azure.github.io/azure-storage-java/参考Azure Storage SDK for Java的Javadocs。