Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to download the mp3 file from url : "http://upload13.music.qzone.soso.com/30671794.mp3", i always got java.io.IOException: Server returned HTTP response code: 403 for URL. But it's ok when open the url using browser. Below is part of my code:

BufferedInputStream bis = null;
BufferedOutputStream bos = null;
try {
    URL url = new URL(link);

    URLConnection urlConn = url.openConnection();
    urlConn.addRequestProperty("User-Agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)");

    String contentType = urlConn.getContentType();

    System.out.println("contentType:" + contentType);

    InputStream is = urlConn.getInputStream();
    bis = new BufferedInputStream(is, 4 * 1024);
    bos = new BufferedOutputStream(new FileOutputStream(
    fileName.toString()));​

Anyone could help me? Thanks in advance!

share|improve this question

4 Answers

Instead of using URLConnection in java, if you use HttpURLConnection we can able to access the requested web page from java. Try the following code

HttpURLConnection httpcon = (HttpURLConnection) url.openConnection(); httpcon.addRequestProperty("User-Agent", "Mozilla/4.76");

Normal java using urlConnection wont accept to access the internet. If access the browser it will allow to perform a search without this exception "HTTP response code : 403 for URL"

share|improve this answer

When I access the URL with my browser I also get 403. Perhaps you're logged in to the site with your browser?

If that's the case you need to duplicate the cookie from your browser and send it along, perhaps even do more to replicate your browser's signature if the site does any extra checks.

You can set the cookie by adding:

urlConn.setRequestProperty("Cookie", "foo=bar"); 

Where foo=bar is the key-value pair you'll find when you locate the site's cookie in your browser.

share|improve this answer
doesn't work, but thanks anyway. – Adao Oct 7 '10 at 15:23

Check the following link for explanation of 403 status code and possible fixes: http://www.checkupdown.com/status/E403.html

share|improve this answer

The problem is given by the Status code. 403 means actually "Forbidden" and implies The request was denied for a reason the server does not want to (or has no means to) indicate to the client.

the problem lies at the server-side.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.