我正在尝试将文件的内容作为字节数组获取。
public static void main(String[] args) {
final IServiceClient client = StorageConsumerProvider.getStorageServiceClient("dev");
String name = new File("C:\\Storage\\Model-1.0.0.jar").getName();
StorageObjectIdentifier objIdentifier = new StorageObjectIdentifier("Model", "1.0.0", name);
// I need to pass the bytes here
client.createObject(objIdentifier, name.getBytes());
}
界面是这样的——
public void createObject(StorageObjectIdentifier objIdentifier, byte[] obj)
createObject
方法接受两个参数,其中一个是 -文件内容作为字节数组
我不确定我应该如何将它作为字节数组传递?有人可以帮我吗?在我的情况下,该文件是一个 jar 文件。