我有以下代码扩展缩短的网址。
import java.io.IOException;
import java.net.HttpURLConnection;
import java.net.Proxy;
import java.net.URL;
public class ExpandUrl {
public static void main(String[] args) throws IOException {
String shortenedUrl = "2q3GMg0"; //read note at the bottom.
String expandedURL = ExpandUrl.expand(shortenedUrl);
System.out.println("expanded url is : " + expandedURL);
}
public static String expand(String shortenedUrl) throws IOException {
URL url = new URL(shortenedUrl);
// open connection
HttpURLConnection httpURLConnection = (HttpURLConnection) url.openConnection(Proxy.NO_PROXY);
int status = 0;
try {
status = httpURLConnection.getResponseCode();
} catch (IOException e) {
e.printStackTrace();
}
System.out.println("status is " + status);
// stop following browser redirect
httpURLConnection.setInstanceFollowRedirects(false);
// extract location header containing the actual destination URL
String expandedURL = httpURLConnection.getHeaderField("Location");
httpURLConnection.disconnect();
return expandedURL;
}
}
代码扩展了一些网址但对其他网址返回null。
例如:它扩展2q3GMg0
但在我使用9mglq8
时返回null,尽管状态代码为200。我测试了两个url。两者都有效并且已经扩展。
注意: Stackoverflow不允许我在主体中放置缩短的链接,所以我刚刚提到了哈希码。
编辑:我获取null的链接没有Location
标头字段。在这种情况下,如何检索原始扩展链接?
status is 200
Key: null value: [HTTP/1.1 200 OK]
Key: X-Cache value: [Hit from cloudfront]
Key: Server value: [Apache]
Key: Connection value: [keep-alive]
Key: Last-Modified value: [Sat, 12 May 2018 12:06:48 GMT]
Key: Date value: [Sat, 12 May 2018 12:11:30 GMT]
Key: Via value: [1.1 587a74dd892ff33ecf276aa569c8b68a.cloudfront.net (CloudFront)]
Key: X-Frame-Options value: [SAMEORIGIN]
Key: Accept-Ranges value: [bytes]
Key: Cache-Control value: [max-age=120, s-maxage=120, public]
Key: X-Amz-Cf-Id value: [-p1_VjHmvcGCI1PbQelSHpUectu_5NfCFUnPu_NUHCJ9_2lS2rTmlA==]
Key: Vary value: [Accept-Encoding]
Key: X-XSS-Protection value: [1]
Key: Content-Length value: [186539]
Key: Age value: [108]
Key: Content-Type value: [text/html]
非常感谢任何形式的帮助。
答案 0 :(得分:1)
如果状态代码为200
,则没有重定向,并且标头中没有Location
字段,因此当您尝试访问Location
密钥的值时会返回null 。您可以使用httpURLConnection.getURL()
获取展开的网址。
如果状态代码为301
或302
,则会有重定向,并且标头中会有Location
字段。您可以将重定向的网址设为:
String expandedURL = httpURLConnection.getHeaderField("Location");
希望这会有所帮助。
答案 1 :(得分:-1)
可能代理正在阻止。
编辑:无论是谁投票都这样:我尝试了两个bit.ly网址并且两者都运行良好。