org.javalite.http.HttpException:网址失败:" https:////.in"

时间:2017-01-18 05:10:32

标签: httpexception javalite

我在Javalite执行一个简单的程序时遇到了一个问题,我正在测试API GET调用。

该方法获取URL并读取响应代码。但JavaLite正在抛出异常:

org.javalite.http.HttpException: Failed URL: "https://google.in"

有人可以帮我理解这个问题吗?

我的代码是:

package com.java.lite;

import org.javalite.http.Get;
import org.javalite.http.Http;
import org.testng.annotations.Test;

public class GetCallTest {

    @Test
    public void getCall() throws Exception {
        System.out.println(ConfigPropertyFile.getPropertyValues()); //This line is executed

        Get get = Http.get(ConfigPropertyFile.getPropertyValues()); //URL being call from another class where I defined a static method.
        System.out.println("Response code" + get.responseCode());
        System.out.println("Response message = `enter code here`" + get.responseMessage());
    }
}

1 个答案:

答案 0 :(得分:0)

您尝试的网址会将重定向返回到https://www.google.co.in/

请尝试:

System.out.println(Http.get("https://www.google.co.in/").text());

您将收到Google主页的文字。