私のコードは次のようなものです:
URLConnection cnx = address.openConnection();
cnx.setAllowUserInteraction(false);
cnx.setDoOutput(true);
cnx.addRequestProperty("User-Agent",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)");
InputStream is = cnx.getInputStream();
を取得する前にヘッダーを設定しても問題ありInputStream
ませんか? 私のヘッダーは送信されますか、それともサーバーはデフォルトURLConnection
のユーザーエージェント (存在する場合) を認識しますか?