JAVA 获取实时汇率

聚合数据中有很多我们会用到的数据,下面是获取实时汇率的方式。
key值聚合数据注册后可获取,需要练习借用的,请评论回复。

public void exchangeRate() {
    String urlIDR = "http://op.juhe.cn/onebox/exchange/currency?from=CNY&to=IDR&key=********(请到聚合数据自行申请)";
    String urlUSD = "http://op.juhe.cn/onebox/exchange/currency?from=CNY&to=USD&key=********(请到聚合数据自行申请)";
    //印尼卢比
    getExchangeRate(urlIDR);
    //美元
    getExchangeRate(urlUSD);
}

String getExchangeRate(String url) {
    InputStreamReader insr = null;
    HttpURLConnection conn = null;
    BufferedReader br = null;
    String data = null;
    String str = "";
    String exchangeRate = "";
    try {
        URL url1 = new URL(url);
        conn = (HttpURLConnection) url1.openConnection();
        if (conn != null) {
            insr = new InputStreamReader(conn.getInputStream(), "UTF-8");
            br = new BufferedReader(insr);
            StringBuilder sb = new StringBuilder("");
            while ((data = br.readLine()) != null) {
                sb.append(data.trim());
            }
            str = sb.toString();
        }
        JSONObject jsonObj = JSONObject.fromObject(str);
        JSONArray results = jsonObj.getJSONArray("result");
        JSONObject results0 = results.getJSONObject(0);
        exchangeRate = results0.get("exchange").toString();
    } catch (Exception e) {
        e.printStackTrace();
    }
    return exchangeRate;
}
 
由于本人水平有限,难免会有所疏漏,不当之处敬请指出,谢谢!
  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 3
    评论
你可以使用以下的Java代码获取实时汇率信息: ```java import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; import java.nio.charset.StandardCharsets; public class CurrencyConverter { public static void main(String[] args) { String fromCurrency = "USD"; String toCurrency = "EUR"; double amount = 100; double exchangeRate = getExchangeRate(fromCurrency, toCurrency); double convertedAmount = exchangeRate * amount; System.out.println(amount + " " + fromCurrency + " = " + convertedAmount + " " + toCurrency); } public static double getExchangeRate(String fromCurrency, String toCurrency) { String url = "https://api.exchangerate-api.com/v4/latest/" + fromCurrency; try { URL urlObj = new URL(url); HttpURLConnection connection = (HttpURLConnection) urlObj.openConnection(); connection.setRequestMethod("GET"); BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream(), StandardCharsets.UTF_8)); String inputLine; StringBuilder response = new StringBuilder(); while ((inputLine = in.readLine()) != null) { response.append(inputLine); } in.close(); String jsonResponse = response.toString(); double exchangeRate = Double.parseDouble(jsonResponse.split("\"" + toCurrency + "\":")[1].split(",")[0]); return exchangeRate; } catch (Exception e) { e.printStackTrace(); return 0; } } } ``` 上述的代码使用了 https://exchangerate-api.com 提供的 API 来获取实时汇率信息。你需要将上述的代码中的 `fromCurrency` 和 `toCurrency` 更改为你所需的货币代码,并将 `amount` 更改为你所需的金额。你也可以使用其他的实时汇率 API 来获取汇率信息,只需要将上述代码中的 `url` 更改为对应的 API 地址即可。
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值