使用REST API从Web服务接收特定数据

时间:2017-12-01 20:02:33

标签: java json swing

我想从此API获取数据:http://countryapi.gear.host/v1/Country/getCountries。我需要该用户可以在Country中写出JTextField的名称,并在NativeName中获取CurrencyCodeJTextArea

我有这样的代码,它仅返回我在HttpGet中编写的国家/地区的数据:HttpGet request = new HttpGet("http://countryapi.gear.host/v1/Country/getCountries?pName=Australia");

但我怎么能这样做,用户可以写国家并获得他想要的信息?

1 个答案:

答案 0 :(得分:1)

尝试使用此

request = new HttpGet(
        "http://countryapi.gear.host/v1/Country/getCountries?pName=country"
                .replaceAll("country", yourTextField.getText())
);