第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

如何用java連接CloudFront?

如何用java連接CloudFront?

蝴蝶刀刀 2023-09-27 10:29:00
目前,我正在使用 java API 使用 Amazon s3 SDK 將文檔上傳到 Amazon s3,但我想利用 CloudFront 的緩存設(shè)施來(lái)加速上傳下載過(guò)程,因此任何人都可以提供有關(guān)如何在 s3 中上傳文件/圖像的任何指示使用云前端?
查看完整描述

1 回答

?
慕妹3242003

TA貢獻(xiàn)1824條經(jīng)驗(yàn) 獲得超6個(gè)贊

最后,我得到了答案。我正在使用 CloudFront Http 方法通過(guò) CloudFront 在 S3 存儲(chǔ)桶中上傳圖像/文檔。這是我的代碼


URL url;

    try {

        url = new URL("**cloudfront URL***"+imagePath);

          HttpURLConnection connection = (HttpURLConnection) url.openConnection();

            connection.setDoOutput(true);

            connection.setDoInput(true);

            connection.setRequestMethod("PUT");

            connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); 

            connection.setRequestProperty("charset","UTF-8");

            connection.setRequestProperty("Content-Length",imageByteArray.length+"");

            DataOutputStream wr = new DataOutputStream(connection.getOutputStream ());

            wr.write(imageByteArray);

            wr.flush();

            wr.close();

            connection.disconnect();

            // Check the HTTP response code. To complete the upload and make the object available, 

            // you must interact with the connection object in some way.

            connection.getResponseCode();

            System.out.println("HTTP response code: " + connection.getResponseCode());

    } catch (Exception e) {

        // TODO Auto-generated catch block

        e.printStackTrace();

    }


查看完整回答
反對(duì) 回復(fù) 2023-09-27
  • 1 回答
  • 0 關(guān)注
  • 125 瀏覽
慕課專(zhuān)欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)