This Java project is a simple currency converter application created to reinforce basic Java concepts, work with dependencies (using Gradle), handle JSON data, and make API calls.
The Currency Converter application allows users to convert an amount from one currency to another using the latest exchange rates fetched from an online API. The application takes the original currency code, the amount to be converted, and the target currency code as input, and then displays the converted amount.
-
The program will prompt you to enter the original currency code, the amount to convert, and the target currency code.
CURRENCY CONVERTER Original Currency Code: usd Value: 100 Target Currency Code: eur
-
The application will fetch the latest exchange rates and display the converted amount.
100.00 usd correspond to 90.50 eur
- Jackson for JSON processing.
- Exchange API for providing exchange rate data.
- Gradle for dependency management and build automation.