我想从此API获取数据:http://countryapi.gear.host/v1/Country/getCountries。我需要该用户可以在Country
中写出JTextField
的名称,并在NativeName
中获取CurrencyCode
和JTextArea
。
我有这样的代码,它仅返回我在HttpGet中编写的国家/地区的数据:HttpGet request = new HttpGet("http://countryapi.gear.host/v1/Country/getCountries?pName=Australia");
。
但我怎么能这样做,用户可以写国家并获得他想要的信息?
答案 0 :(得分:1)
尝试使用此
request = new HttpGet(
"http://countryapi.gear.host/v1/Country/getCountries?pName=country"
.replaceAll("country", yourTextField.getText())
);