首頁 > Java > java教程 > 主體

如何確保在 HttpURLConnection 請求中收到標頭?

Susan Sarandon
發布: 2024-11-16 21:05:03
原創
114 人瀏覽過

How to Ensure Headers Are Received in HttpURLConnection Requests?

對 HttpURLConnection 中的標頭添加進行故障排除

嘗試將標頭附加到 HttpURLConnection 請求時,setRequestProperty()方法可能不會總是按預期運行,導致伺服器收不到預期的內容

一個潛在的解決方案,已被證明在TomCat 環境中有效,是利用以下程式碼片段:

URL myURL = new URL(serviceURL);
HttpURLConnection myURLConnection = (HttpURLConnection)myURL.openConnection();

String userCredentials = "username:password";
String basicAuth = "Basic " + new String(Base64.getEncoder().encode(userCredentials.getBytes()));

myURLConnection.setRequestProperty ("Authorization", basicAuth);
// Adjust these properties based on request type (POST/GET) and other requirements
myURLConnection.setRequestMethod("POST");
myURLConnection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
myURLConnection.setRequestProperty("Content-Length", "" + postData.getBytes().length);
myURLConnection.setRequestProperty("Content-Language", "en-US");
myURLConnection.setUseCaches(false);
myURLConnection.setDoInput(true);
myURLConnection.setDoOutput(true);
登入後複製

此程式碼是專門為POST 要求設計的,但您可以輕鬆地如有必要,請將其修改為GET 或其他請求類型。透過套用這些更新,您應該能夠成功地將標頭新增至 HttpURLConnection 請求中,並確保伺服器收到預期的標頭。

以上是如何確保在 HttpURLConnection 請求中收到標頭?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板