Tagged Questions
The urlconnection tag has no wiki summary.
162
votes
2answers
76k views
How to use java.net.URLConnection to fire and handle HTTP requests?
This subject is pretty often asked here and the Sun Oracle tutorial is too concise about the subject. So I thought, let's post a CW question and answer about this so that it can if necessary be ...
9
votes
9answers
65k views
Why would a “java.net.ConnectException: Connection timed out” exception occur when URL is up?
I'm getting a ConnectException: Connection timed out with some frequency from my code. The URL I am trying to hit is up. The same code works for some users, but not others. It seems like once one ...
8
votes
3answers
7k views
Java URLConnection Timeout
I am trying to parse an XML file from an HTTP URL. I want to configure a timeout of 15 seconds if the XML fetch takes longer than that, I want to report a timeout. For some reason, the ...
7
votes
3answers
3k views
How can I specify the local address on a java.net.URLConnection?
My Tomcat instance is listening to multiple IP adress, but I want to control what source IP address is used when opening a URLConnection. How can I specify this?
6
votes
1answer
4k views
Convenient way to parse incoming multipart/form-data parameters in a Servlet
Is there any convenient way to read and parse data from incoming request.
E.g client initiate post request
URLConnection connection = new URL(url).openConnection();
connection.setDoOutput(true);
...
5
votes
1answer
1k views
can't get response header location using JAVA's URLConnection
can someone kindly suggest what I'm doing wrong here?
I'm trying to get the header location for a certain URL using java
here is my code:
URLConnection conn = url.openConnection();
String location = ...
4
votes
1answer
322 views
java.net.URLConnection.guessContentTypeFromStream and text/plain
All,
I am trying to identify plain text files with Mac line endings and, inside an InputStream, silently convert them to Windows or Linux line endings (the important part is the LF character, ...
4
votes
2answers
2k views
Java: resume Download in URLConnection
Hi
I wrote a program that downloads some files from some servers.
Currently program works properly.
But I want to add resume support to it.
I'm doing it like this But the result file is corrupted:
...
4
votes
2answers
3k views
How does URLConnection.setUseCaches() work in practice?
I have an Applet which is loading images over a http connection using URLConnection. I am setting setUseCaches(true) for all connections, but still not seeing any caching behavior. My image's HTTP ...
4
votes
2answers
8k views
In java, how to create HttpsURLConnection or HttpURLConnection based on the url?
I'm working on a project where I'm creating a class to run http client requests (my class acts as a client). It takes in a url and a request method (GET, POST, PUT, etc) and I want to be able to ...
4
votes
5answers
5k views
URLConnection FileNotFoundException for non-standard HTTP port sources
I was trying to use the Apache Ant Get task to get a list of WSDLs generated by another team in our company. They have them hosted on a weblogic 9.x server on http://....com:7925/services/. I am ...
4
votes
2answers
11k views
What is the proper way of setting headers in a URLConnection?
My code is like the following:
URLConnection cnx = address.openConnection();
cnx.setAllowUserInteraction(false);
cnx.setDoOutput(true);
cnx.addRequestProperty("User-Agent",
"Mozilla/4.0 ...
3
votes
3answers
1k views
Unable to resolve host “<insert URL here>” No address associated with hostname
I tried following this tutorial:
Getting Data from the Web
I tried implementing it on Android 3.0, the latest platform for tablets, however, I get this error: "Unable to resolve host "www.anddev.org" ...
3
votes
1answer
170 views
Java: How URLConnection treats completed TCP connection?
When I use URLConnection to do some HTTP requests, I could only close InputStream and OutputStream, but not the socket.
Does the class automatically close the socket? How does it do it? Will the ...
2
votes
1answer
131 views
Can I get an URLConnection for a file within a JAR within a non-exploded WAR?
I have some resource files that are in the classpath of my web application (inside a JAR, if that matters). I know I can access the contents of those resources by calling e.g. ...
2
votes
1answer
500 views
URLConnection with Cookies?
I'm trying to make a URLConnection that supports cookies. According to the documentation I can use:
CookieManager cookieManager = new CookieManager();
CookieHandler.setDefault(cookieManager);
I ...
2
votes
2answers
299 views
Download URL content with timeout
I want to download the URL content in java with a specified download time. For ex: i want to have a maximum download timeout of 10 seconds for www.yahoo.com. If download takes more than 10s, then an ...
2
votes
2answers
128 views
Problem connecting to PHP script with a Java application
I have a swing application that when the user clicks on a JButton in it, it connects to a php script in my website to send some data to it and retrieve the results from the PHP script.
This worked ...
2
votes
3answers
918 views
Servlet 3.0 using @MultipartConfig throws exception when using getPart()
I am getting wierd behaviour with server-api 3.0 when using the @MultipartConfig.
When I am calling the servlet from a jsp page it works 100% , but when I make a call to the servlet from my own java ...
2
votes
3answers
508 views
Reading from a URL Connection Java
I'm trying to read html code from a URL Connection. In one case the html file I'm trying to read includes 5 line breaks before the actual doc type declaration. In this case the input reader throws an ...
2
votes
2answers
423 views
Is it possible to check progress of URLconnection.getInputStream()?
I want to check progress of downloading file by URLconnection. Is it possible or should I use another library? This is my urlconnection function:
public static String sendPostRequest(String httpURL, ...
2
votes
5answers
230 views
How to get non-latin characters from website?
I try to get data from latata.pl/pl.php and view all sign (polish - iso-8859-2)
final URL url = new URL("http://latata.pl/pl.php");
final URLConnection urlConnection = url.openConnection();
...
2
votes
3answers
2k views
Apache http client or URLConnection
I need to download a web page on an android app and I am having a hard time deciding whether to use the android apache htto client or java's URLConnection.
Any thoughts?
Thanks
2
votes
1answer
692 views
How to handle switch from 3G to WIFI. UrlConnection TimeOut does not throw Exeption
My Application needs to Download some bigger Files. I use a Service for the Download an show the Progress in a Notification. The Problem is that during that download time the user can switch from 3g ...
2
votes
1answer
3k views
Android: Trying to get data from youtube api
I'm attempting to get data from http://gdata.youtube.com/feeds/api/standardfeeds/recently_featured?&start-index=1&max-results=15&v=2
and print the titles of the videos, but I get an ...
2
votes
2answers
2k views
Difference between URLConnection, HttpURLConnection and HttpsURLConnection
I want to ask a basic problem in Java. What is the difference between URLConnection, HttpURLConnection and HttpsURLConnection (with SSL). Under what conditions, which one should I use? Can provide ...
2
votes
2answers
1k views
Reading binary file from URLConnection
I'm trying to read a binary file from a URLConnection. When I test it with a text file it seems to work fine but for binary files it doesn't. I'm using the following mime-type on the server when the ...
2
votes
1answer
1k views
connection.setRequestProperty and excplicitly writing to the urloutputstream are they same?
URL url = new URL("http://www.example.com/comment");
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setDoOutput(true);
connection.setRequestMethod("POST");
Is
...
2
votes
3answers
801 views
On Android/Java, how many bytes has a connection downloaded?
An Android app I'm writing involves quite a lot of downloading of content (think podcatcher/RSS).
I would like to be able to give the user an indication of how many bytes they've downloaded, so they ...
2
votes
4answers
15k views
Java: how to use UrlConnection to post request with authorization?
I would lake to generate POST request to a server which requires authentication. I tried to use the following method:
private synchronized String CreateNewProductPOST (String urlString, String ...
2
votes
2answers
2k views
How to optimally clean up outgoing UrlConnection objects in high use multithreaded environment?
I have a use case where a servlet (that has reasonably high concurrent use) makes an outgoing URLConnection to retrieve some data REST style as part of its normal server-side processing logic. The ...
1
vote
2answers
30 views
class to read http pages with reliable timout that return `java.io.InputStream`
Is there any class for reading http pages that return a java.io.InputStream and its timeout be reliable?
I tried java.net.URLConnection and it doesn't have a reliable timeout (it takes more time that ...
1
vote
1answer
76 views
HttpURLConnection sends a POST request even though httpCon.setRequestMethod(“GET”); is set
Here is my code:
String addr = "http://172.26.41.18:8080/domain/list";
URL url = new URL(addr);
HttpURLConnection httpCon = (HttpURLConnection) url.openConnection();
httpCon.setDoOutput(true);
...
1
vote
0answers
143 views
Android URLConnection does only work in wifi, not with 3g
I have written an app which uses an URLConnection to get a .html file.
Everything works fine over wifi. But over 3g the file is not returned correctly.
When i try to access the website via the ...
1
vote
2answers
105 views
Java code (URLConnection - remote get method) in HTML (Blogger.com post)
In Blogger post I have this snippet
<applet codebase="https://droidsnip.googlecode.com/hg/" height="300" archive="text.jar" width="300" code="Google.class">
and have this java code stored at ...
1
vote
1answer
220 views
My questions about HttpURLConnections on android. (cast-URLConnection, url.openConnection, getOutPutStream().. )
I have a problem about creating a httpurlconnection(or httpsurlconnection). Actually this is about setting connection headers after casting url.openconnection.Before the running same code is not ...
1
vote
2answers
154 views
Can I override the Host header where using java's HttpUrlConnection class?
I'm using the following code to open a http connection in java:
URL url = new URL("http://stackoverflow.com");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
...
1
vote
1answer
58 views
How to supress authentication window when using URLConnection in Eclipse Plugin code
I have created an Eclipse Plugin, and within that I have created a Wizard by extending org.eclipse.jface.wizard.Wizard. In that I am using java.net.URLConnection to perform Basic Authentication with a ...
1
vote
3answers
393 views
Setting custom HTTP request headers in an URL object doesn't work
I am trying to fetch an image from an IP camera using HTTP. The camera requires HTTP basic authentication, so I have to add the corresponding request header:
URL url = new ...
1
vote
0answers
44 views
How to capture downloads from Browsers
My Name is Rohit Kumawat
I am creating a Download Manager in Java Language. I have almost created it with support for FTP,HTTP & HTTPS(Using JSSE 3.0). Now i want to capture downloads from ...
1
vote
1answer
767 views
java.io.EOFException when sending serialized data to a servlet
I'm tring to upload from my Java local application an object that will include a file to a server. My plan is that a servlet running on tomcat will get the object using the ObjectInputStream in the ...
1
vote
1answer
336 views
getContentLength doesn't work on android for FTP url
Following code prints length -1 for filesize on android, but it works fine on desktop JAVA.
I'm using Android 2.2.
URL url1 = null;
URLConnection uconn = null;
try {
url1 = new ...
1
vote
1answer
145 views
Cannot getInputStream() in applet
Everyone,
I am trying to code an applet in Java which will access a video-game's Application Programming Interface (API), and while I can successfully run the applet via the Eclipse IDE, it ...
1
vote
2answers
70 views
How to find out the name of the default page displayed by a webserver?
I'm downloading various files through I/O-streaming in my Java application. Receiving and saving those files works well as long as I have a full URL-path including file name, but how can I find out ...
1
vote
2answers
423 views
Calling a Servlet from a Java application
I want to call a Servlet from a Java application. The problem is, that the call seems not to reach the Servlet. I do not get any error, but do not reach the first output "doPost" in the Servlet. If I ...
1
vote
2answers
96 views
Equivalent of java.net.URLConnection in .NET
Is there an equivalent of the java.net.URLConnection class
in .NET. , for example the HttpWebRequest? What else could be used?
1
vote
2answers
2k views
URLConnection does not get the charset
I'm using URL.openConnection() to download something from a server. The server says
Content-Type: text/plain; charset=utf-8
But connection.getContentEncoding() returns null. What up?
1
vote
0answers
212 views
Getting HTTP 400 on randome times on hitting url to get Twitter followers/friends - java
I am developing an application on Twitter.
And Twitter is giving me response of 400 on random times. I am in panic. Their servers are too bad to entertain requests. I am hitting their REST URL to get ...
1
vote
1answer
596 views
How can I load txt file from internet into my jsf app?
It's me again) I have another problem. I want to load file (for example - txt) from web.
I tried to use the next code in my managed bean:
public void run()
{
try
{
URL url = new ...
1
vote
2answers
184 views
How to navigate with URLConnection?
My application needs some web scraping functionality. I have URL object that downloads all the data. But I need to scrape many pages and I create many URL objects so I open many connections. How to ...