当我尝试打开一个URL

当我尝试打开一个URL

本文介绍了为什么我得到一个403错误,当我尝试打开一个URL的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我目前使用的 IMDB的API来获取有关电影的一些信息。当我使用的API,并尝试打开该在java中它给了我一个403错误。 URL应当以JSON返回数据。
这里是我的code到目前为止(Java 7中):

 进口java.io.BufferedReader中;
进口java.io.IOException异常;
进口的java.io.InputStream;
进口java.io.InputStreamReader中;
进口java.net.MalformedURLException;
进口的java.net.URL;公共类的测试{
    公共静态无效的主要(字串[] args){
        网址URL = NULL;
        尝试{
            URL =新的URL(http://imdbapi.org/?q=batman);
        }赶上(MalformedURLException的E){
            // TODO自动生成catch块
            e.printStackTrace();
        }
        InputStream为= NULL;
        尝试{
            是= url.openConnection()的getInputStream()。
        }赶上(IOException异常五){
            // TODO自动生成catch块
            e.printStackTrace();
        }
        读者的BufferedReader =新的BufferedReader(新的InputStreamReader(是));
        串线= NULL;
        尝试{
            而((行= reader.readLine())!= NULL){
               的System.out.println(线);
            }
        }赶上(IOException异常五){
            // TODO自动生成catch块
            e.printStackTrace();
        }
        尝试{
            reader.close();
        }赶上(IOException异常五){
            // TODO自动生成catch块
            e.printStackTrace();
        }
        的System.out.println(线);
    }
}


解决方案

您应该设置用户代理

  System.setProperty(http.agent,Mozilla的/ 5.0(Windows NT的6.1; WOW64)为AppleWebKit / 537.36(KHTML,像壁虎)的Chrome / Safari浏览器28.0.1500.29 / 537.36 );

 的URLConnection连接= url.openConnection();
connection.setRequestProperty(用户代理,Mozilla的/ 5.0(Windows NT的6.1; WOW64)为AppleWebKit / 537.36(KHTML,像壁虎)的Chrome / Safari浏览器28.0.1500.29 / 537.36);
是= connection.getInputStream();

I am currently using the imdb api from http://imdbapi.org to get some information about a movie. When I use the API and try to open this url in java it gives me a 403 error. The url is supposed to return the data in JSON.Here is my code so far(Java 7):

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.MalformedURLException;
import java.net.URL;

public class Test {
    public static void main(String[] args) {
        URL url =null;
        try {
            url = new URL("http://imdbapi.org/?q=batman");
        } catch (MalformedURLException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        InputStream is =null;
        try {
            is = url.openConnection().getInputStream();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        BufferedReader reader = new BufferedReader( new InputStreamReader( is )  );
        String line = null;
        try {
            while( ( line = reader.readLine() ) != null )  {
               System.out.println(line);
            }
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        try {
            reader.close();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        System.out.println(line);
    }
}
解决方案

You should set User-Agent:

System.setProperty("http.agent", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.29 Safari/537.36");

or

URLConnection connection = url.openConnection();
connection.setRequestProperty("User-Agent", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/28.0.1500.29 Safari/537.36");
is = connection.getInputStream();

这篇关于为什么我得到一个403错误,当我尝试打开一个URL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-30 20:46