aliyun_oss_flutter2 2.0.0 copy "aliyun_oss_flutter2: ^2.0.0" to clipboard
aliyun_oss_flutter2: ^2.0.0 copied to clipboard

aliyun oss plugin for flutter. Use this plugin to upload、download、list files to aliyun oss.

aliyun_oss_flutter2 #

aliyun oss plugin for flutter. Use this plugin to upload、download、list files to aliyun oss.

Usage #

功能 #

  • ✅ PutObject 添加的Object大小不能超过5 GB。
  • ✅ ListObject 获取指定目录的object
  • ✅ GetObject 下载文件到本地

void main() async{
  //这里直接用子账号授权
  init();
  //上传文件
  // await putTest("D:/19135//Pictures/pexels-pixabay-207636.jpg",DateTime.now().toString()+".jpg");
  //获取文件列表
  final listObjects = await OSSClient().listObject(rootKey: "",deep: false);
  print(listObjects);
  print(listObjects.length);
  //下载文件
  // await OSSClient().getObject(OSSObjectGet("test/2022-01-02 1Delimiter1:31:28.948102.jpg", r"D:\19135\Pictures\948102.jpg"),onReceiveProgress: (count,total){
  //   print("${count}/${total}");
  // });

}

//初始化授权
void init(){
  // 初始化OSSClient
  OSSClient.init(
    endpoint: OSSInfo.Endpoint,
    bucket: OSSInfo.Bucket,
    credentials: () async{
      return Credentials(
        accessKeyId: OSSInfo.accessKeyId,
        accessKeySecret: OSSInfo.AccessKeySecret,
      );
    },
  );
}
//上传文件
Future<void> putTest(String filePath,String oosName) async{
  var file = File(filePath);
  //文件不存在
  if (! await file.exists()) {
    print("文件不存在");
    return;
  }

  final object = await OSSClient().putObject(
    OSSObjectPut.fromFile(file:file,key:oosName),
    path: "test", // String?
  );
}

Example #

感谢大佬提供的认证及上传代码 https://github.com/lucky1213/aliyun_oss 因改动太大我就不pull requets 了

0
likes
110
points
34
downloads

Publisher

unverified uploader

Weekly Downloads

aliyun oss plugin for flutter. Use this plugin to upload、download、list files to aliyun oss.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

crypto, dio, flutter, flutter_test, http_parser, intl, path, xml

More

Packages that depend on aliyun_oss_flutter2