Results 1 to 4 of 4
- 09-22-2012, 11:01 AM #1
Member
- Join Date
- Sep 2012
- Posts
- 2
- Rep Power
- 0
How to download protected web page using JAVA
We have a task, to design a class which can download source of any web page. But when I try to test my code and fetch page like http://anidb.net/perl-bin/animedb.pl?show=main – nothing is working.
Standard code like this fails:
Here is the result I got: Šwq>²"¦§5´ïÇUº=ôÙö?kŠ}~“bd`?l“Ïçz¢Çêõ>"?j׉R“y}K¸\ Ìc_DLÙªÏ_ –óMm_¼_0”•ö°ËC_aí½sî¤ìÁS ‚>dC0ìs_–y¹ñ±ÏÝÜAø%ÈäÖáæ©A@,4x„жëɃ?Java Code:import java.net.*; import java.io.*; public class URLReader { public static void main(String[] args) throws Exception { URL link = new URL("http://www.anidb.net/"); BufferedReader in = new BufferedReader( new InputStreamReader(link.openStream())); String inputLine; while ((inputLine = in.readLine()) != null) System.out.println(inputLine); in.close(); } }
I have tried everything: cookies, header files but nothing seems to work. If you have some hint for me, I will appreciate it. I’ve been thinking about this problem for to weeks. Thanks.
- 09-22-2012, 12:06 PM #2
Member
- Join Date
- Sep 2012
- Posts
- 2
- Rep Power
- 0
Re: How to download protected web page using JAVA
It's all about gzip. I should use java.util.zip.GZIPInputStream.
Kind people helped me.
- 09-22-2012, 01:19 PM #3
Re: How to download protected web page using JAVA
Why do they call it rush hour when nothing moves? - Robin Williams
- 09-22-2012, 02:30 PM #4
Re: How to download protected web page using JAVA
Also posted at How to download protected web page using JAVA
If you don't understand my response, don't ignore it, ask a question.
Similar Threads
-
Help needed in File download from password protected FTP server.
By Kuttappu in forum New To JavaReplies: 17Last Post: 05-22-2012, 01:19 PM -
Please help with Pasword protected page Java script..!
By boyfrom75 in forum Forum LobbyReplies: 3Last Post: 11-15-2011, 08:13 PM -
Download then show page from jsp
By aflores in forum New To JavaReplies: 4Last Post: 09-10-2010, 09:26 AM -
how direct her/ him to the Sun´s download page?
By willemjav in forum Java AppletsReplies: 1Last Post: 04-17-2008, 04:03 PM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks