4
我試圖包含一些數據的集合存儲到blob
(在雲存儲像Rackspace CloudFiles
或Amazon S3
)如何將設置變量轉換爲byte/file/inputstream/string?
現在,這是(使用jclouds
庫)用於實際存儲所述一組變量到雲提供商的代碼 -
Set<? extends NodeMetadata> nodes;
BlobStore blobStore = bscontext.getBlobStore();
Blob blob;
blob
必須存儲到雲存儲或從雲存儲檢索。這是通過以下方式來實際一些數據存儲在BLOB -
blob.setPayload(argument)
Argument= byte/file/inputstream/string.
我想知道的是,這上面我用的(即字節或文件,或爲InputStream或字符串)?另外,如何將名爲'nodes'的Set變量中存儲的值轉換爲該格式,以便我可以將其存儲爲blob
?