Results 1 to 3 of 3
Thread: How do you modify http header?
- 06-29-2011, 04:58 AM #1
Member
- Join Date
- Jun 2011
- Posts
- 5
- Rep Power
- 0
How do you modify http header?
Hi
I am using the following code to connect to different web sites but some will accept the connection
and some won't. I believe that the ones that won't will not do it because the JVM is not sending
the correct header info.
I believe that one of the things I have to do is set the User-Agent but don't know how to do this.Java Code:Vector vect = new Vector(); String filename = "htmpage.html"; String url = "http://www.genericwebsite.com"; // THE NEXT CODE TRYS TO LOOK UP PAGE AND SAVE IN A FILE URL myurl = new URL(url); FileWriter fw = new FileWriter(filename); BufferedReader in = new BufferedReader( new InputStreamReader( myurl.openStream())); String inputLine; while ((inputLine = in.readLine()) != null){ vect.addElement(inputLine); fw.write(inputLine); } fw.close();
Can anyone help? Thanks in advance.
- 06-29-2011, 04:27 PM #2
Moderator
- Join Date
- Jul 2010
- Location
- California
- Posts
- 1,609
- Rep Power
- 5
Modify the header by setting the request property with the urlConnection object retrieved by calling URL.getConnection()
Java Code:URLConnection conn = myurl.getConnection(); conn.setRequestProperty("mykey", "myvalue");
- 06-29-2011, 06:57 PM #3
Member
- Join Date
- Jun 2011
- Posts
- 5
- Rep Power
- 0
Similar Threads
-
modify XML file
By Fireholder in forum Advanced JavaReplies: 1Last Post: 04-19-2011, 09:06 AM -
http://localhost:8080/helloservice/HelloService?Tester HTTP Status 404 -
By vietnamusa in forum Enterprise JavaBeans (EJB)Replies: 0Last Post: 03-13-2011, 12:02 AM -
Modify JOptionPane
By GodSon in forum AWT / SwingReplies: 0Last Post: 12-30-2010, 03:46 PM -
HTTP Status 405 - HTTP method GET is not supported by this URL
By javanewbie in forum Java ServletReplies: 7Last Post: 11-11-2009, 08:29 PM -
Modify A* Algorithm
By prakharbirla in forum Advanced JavaReplies: 1Last Post: 02-13-2008, 06:25 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks