由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - 怎样得到redirect的destination url
相关主题
Re: DCOM, CORBA, JAVA/RMIRe: 有没有办法在browser第一次访问的时候知道是不是支持cookie?
请教:怎样从网上数据库获取数据 (转载)How would clear a BufferedImage?
When running a .jar file, error message: cannot connect to window server新手问一个:如何找.jar文件里都有什么class?
Re: how to display text above componentSpring MVC question.
How to redirect standard input in javaRSS 得open source?
Question of POP&SMTP server connectionSpring question, redirect and carry data over?
Build web server and dispatcher?How to prevent double submission in web form?
关于Jsp timeout有没有可以整合几个xml 文件的function
相关话题的讨论汇总
话题: url话题: redirect话题: 得到话题: header
进入Java版参与讨论
1 (共1页)
h*****a
发帖数: 1718
1
比如写一个RSS reader,读到一个url是 http://bensbargains.net/link.php?threadid=116324&linkid=14。这个url实际上redirect到bestbuy的onsale的item,我怎样才能得到后面的这个url呢?
多谢。
k***r
发帖数: 4260
2
Load and analyze that page. There are multiple ways to redirect.
Header is most used.

threadid=116324&linkid=14。这个url实际上redirect到bestbuy的onsale的item,我
怎样
才能得到后面的这个url呢?

【在 h*****a 的大作中提到】
: 比如写一个RSS reader,读到一个url是 http://bensbargains.net/link.php?threadid=116324&linkid=14。这个url实际上redirect到bestbuy的onsale的item,我怎样才能得到后面的这个url呢?
: 多谢。

g*****g
发帖数: 34805
3
The first request should get you a 301 code, and the new url is in
the header. If you have a headless client, you should be able to
get that url.

【在 h*****a 的大作中提到】
: 比如写一个RSS reader,读到一个url是 http://bensbargains.net/link.php?threadid=116324&linkid=14。这个url实际上redirect到bestbuy的onsale的item,我怎样才能得到后面的这个url呢?
: 多谢。

h*****a
发帖数: 1718
4
Thanks for all replies。
基本搞定,就是check response code, 然后从header里面得到location。

【在 g*****g 的大作中提到】
: The first request should get you a 301 code, and the new url is in
: the header. If you have a headless client, you should be able to
: get that url.

s******e
发帖数: 493
5
once the page loaded, if you check the current address bar, it shows you the
new url. The old url is gone. The whole process is transparent.
1 (共1页)
进入Java版参与讨论
相关主题
有没有可以整合几个xml 文件的functionHow to redirect standard input in java
奇怪的现象Question of POP&SMTP server connection
JAVA新手问题请教Build web server and dispatcher?
sendRedirect problem关于Jsp timeout
Re: DCOM, CORBA, JAVA/RMIRe: 有没有办法在browser第一次访问的时候知道是不是支持cookie?
请教:怎样从网上数据库获取数据 (转载)How would clear a BufferedImage?
When running a .jar file, error message: cannot connect to window server新手问一个:如何找.jar文件里都有什么class?
Re: how to display text above componentSpring MVC question.
相关话题的讨论汇总
话题: url话题: redirect话题: 得到话题: header