1
這是我的java代碼。我正在從Config.properties
文件中檢索證書到我的java代碼。我在爲Region提取時出錯。請讓我知道如何解決它。提前致謝。如何在Config.properties文件中保留S3區域
Confi.properties file
url=
port=
database=
user=
password=
awsid=
awskey=
region=Regions.AP_SOUTH_1
bucket=
s3url=
的Java文件
prop.load(inputStream);
String awsid = prop.getProperty("awsid");
String awskey = prop.getProperty("awskey");
BasicAWSCredentials creds = new BasicAWSCredentials(awsid, awskey);
AmazonS3 s3client = AmazonS3ClientBuilder.standard().withRegion(Regions.AP_SOUTH_1).withCredentials(new AWSStaticCredentialsProvider(creds)).build();
「我在爲區域提取時出錯」 - 此代碼不提取區域 – alfasin