0
使用下面的代碼實現Tika(文章對象是我自己的),我遇到了URL重定向到最後一頁,我相信通過jQuery.extend命令。Apache Tika - 如何訪問重定向URL
URL articleURL = new URL(article.getLink());
stream = TikaInputStream.get(articleURL);
articleBytes = IOUtils.toByteArray(stream);
if (articleBytes.length == 0) {
return null;
} else {
article.setContentLength((long) articleBytes.length);
}
ContentHandler textHandler = new BodyContentHandler();
Metadata metadata = new Metadata();
AutoDetectParser parser = new AutoDetectParser();
ParseContext context = new ParseContext();
parser.parse(new ByteArrayInputStream(articleBytes), new BoilerpipeContentHandler(textHandler), metadata, context);
Tika遵循重定向的URL很好,但我想知道最終的URL是什麼。有什麼方法可以從Tika獲得實際的最終網址?
具有重定向在它的一個例子網址是: