J
jrichard
Im french, sorry for my english
I have a program who take some information of a web page. The number
of results are different in fonction on my search and are displayed on
different pages with an index like :
http://www.xxxxxxx.com/recherche?page=11
http://www.xxxxxxx.com/recherche?page=12
etc
My problem is : if i want take the information of
http://www.xxxxxxx.com/recherche?page=12, the browser display the
first page of the search. Only an refresh on the page display after
refresh the good results. So my program can take only the first page
of result.
I have not find any solution for refresh the page in the same URL
connection.
like :
URL url = new URL(remoteMachine);
URLConnection urlconn = url.openConnection();
if (urlconn.getContent() instanceof InputStream) {
BufferedReader in = new BufferedReader(new
InputStreamReader(urlconn.getInputStream()));
etc .........
I hope its possible to refresh the page in the same java url
connection. Please help me.
Tks.
I have a program who take some information of a web page. The number
of results are different in fonction on my search and are displayed on
different pages with an index like :
http://www.xxxxxxx.com/recherche?page=11
http://www.xxxxxxx.com/recherche?page=12
etc
My problem is : if i want take the information of
http://www.xxxxxxx.com/recherche?page=12, the browser display the
first page of the search. Only an refresh on the page display after
refresh the good results. So my program can take only the first page
of result.
I have not find any solution for refresh the page in the same URL
connection.
like :
URL url = new URL(remoteMachine);
URLConnection urlconn = url.openConnection();
if (urlconn.getContent() instanceof InputStream) {
BufferedReader in = new BufferedReader(new
InputStreamReader(urlconn.getInputStream()));
etc .........
I hope its possible to refresh the page in the same java url
connection. Please help me.
Tks.