aws sdk c ++代码不适用于发行版

时间:2019-07-23 06:05:16

标签: c++ dll aws-sdk-cpp release-builds

我在Visual Studio 2017中创建了一个.dll c ++项目。并且其中包含使用aws sdk从s3存储桶中获取文件的代码。

我在Debug模式下构建了这个dll项目,并在我的主应用程序(也为c ++)上使用了它。而且有效。

现在,我确实对dll项目和我的主应用程序进行了发布。当执行“ aws sdk c ++”代码时,我的应用程序崩溃了。

这是有关aws sdk c ++的代码段:

    int Download()
    {
        Aws::SDKOptions options;
        Aws::InitAPI(options);
        {
            const Aws::String bucket_name = "timestamp-storage";
            //Aws::String key_name = "";
            const Aws::String region = "ap-northeast-1";
            std::map<int, std::string> uploadedBioMap = BiometricDB::List();
            std::map<int, std::string>::iterator i;
            for (i = uploadedBioMap.begin(); i != uploadedBioMap.end(); i++) {
                Aws::String key_name = i->second;
                std::cout << "Downloading " << key_name << " from S3 bucket: " <<
                    bucket_name << std::endl;
                Aws::Client::ClientConfiguration clientConfig;
                if (!region.empty())
                    clientConfig.region = region;
                Aws::S3::S3Client s3_client(clientConfig);
                Aws::S3::Model::GetObjectRequest object_request;
                object_request.WithBucket(bucket_name).WithKey(key_name);
                auto get_object_outcome = s3_client.GetObject(object_request);
                if (get_object_outcome.IsSuccess())
                {
                    Aws::OFStream local_file;
                    local_file.open(("enroll/" + key_name).c_str(), std::ios::out | std::ios::binary);
                    local_file << get_object_outcome.GetResult().GetBody().rdbuf();
                    std::cout << "Done!" << std::endl;
                }
                else
                {
                    std::cout << "GetObject error: " <<
                        get_object_outcome.GetError().GetExceptionName() << " " <<
                        get_object_outcome.GetError().GetMessage() << std::endl;
                }
            }
        }
        Aws::ShutdownAPI(options);
        return 1;
    }

希望有人可以帮助我。

1 个答案:

答案 0 :(得分:0)

顺便说一句,我的代码没有错。我刚刚发现我需要更新在Visual Studio中安装的nuget软件包。因此,当我这样做时,它可以解决问题。谢谢。