Home Loan Calculator

Loan Payment Calculator

Loan Repayment Calculator Desktop Application using Java GUI Swing

Class: LoanUI.java
Class: Loan.java
Class: FormatUI.java
Class: LoanMain.java
Author: Shahrzad Jahangirian
Language: Java (using Java 6) Download Java 6 and Download Java Runtime 6(JRE)
Date Added: Dec 24, 2013
Licence: All source codes are for showing my skills in Software Development to get me a Job as an Application Developer. You are not allowed to sell this Application or use my codes to develop an application for Sale or apply my codes to develop software for commercial use and profit. You can offer me a price to buy the Application for mass production or buy my codes to develop your application for profit. Also you may offer me a price to buy this Application for your Business and ask me to update the codes to match your Business Requirements.

Description: This is a Loan Repayment Calculator Application that I developed using Java programming language. User enters Loan Amount, Loan Term in years or months, Interest Rate, and the Start of repayment date and press Calculate button to get Monthly Repayment amount, Loan Pay Off Date, and Total Payments including Interest after end of Loan Term. I coded this Loan Repayment formula



How to Run: I tested all codes on Windows 7 Command Prompt with Java(TM) SE Runtime Environment 6 on my computer. ( you may download it by visiting this link )
You need to create all files and save it in a folder in your computer such as C:\javacodes and compile and run at command prompt as follows. I assumed you saved all files at C:\javacodes
C:\javacodes> javac FormatUI.java -d c:\javacodes "this statement compiles the class and save it in loanPKG package"
C:\javacodes> javac Loan.java -d c:\javacodes "this statement compiles the class and save it in loanPKG package"
C:\javacodes> javac LoanUI.java -d c:\javacodes "this statement compiles the class and save it in loanPKG package"
C:\javacodes> javac LoanMain.java "compiles the HealthMain class"
C:\javacodes> Java LoanMain"and this statement runs the Application"

Class: LoanUI.java
Class:Loan.java
Class: FormatUI.java
Class:LoanMain.java