Java之~ 等额本息,等额本金,组合贷

一,等额本息工具类

import java.math.BigDecimal;
import java.text.DecimalFormat;
import java.util.HashMap;
import java.util.Map;

/**
 * 等额本息还款,也称定期付息,即借款人每月按相等的金额偿还贷款本息,其中每月贷款利息按月初剩余贷款本金计算并逐月结清。把按揭贷款的本金总额与利息总额相加,
 * 然后平均分摊到还款期限的每个月中。作为还款人,每个月还给银行固定金额,但每月还款额中的本金比重逐月递增、利息比重逐月递减。
 */

public class AverageCapitalPlusInterestUtils {

      public static final int MO =12;    
//    public static void main(String[] args) {
//        double invest = 1000000; // 本金
//        int totalMonth = 10;
//        double yearRate = 0.049; // 年利率
//        
        Map<String ,Object> result = getAverageCapitalPlusInterest(invest, yearRate, totalMonth);
//        System.out.println(getAverageCapitalPlusInterestAll(500000, 0.0325, 500000, 0.049, 10));
//    }
    
    /**
     * 等额本息
     * @param invest  总金额
     * @param yearRate  年利率
     * @param totalMonth  贷款年限
     * @return
     */
    public static Map<String ,Object> getAverageCapitalPlusInterest(double invest, double yearRate, int totalMonth) {
        int month = totalMonth*MO;
        
        Map<String ,Object> result = new HashMap<String ,Object>();
        
        BigDecimal benxi = getPerMonthPrincipalInterest(invest, yearRate, month);
        Map<Integer, BigDecimal> mapPrincipal = getPerMonthPrincipal(invest, yearRate, month);
        Map<Integer, BigDecimal> mapInterest = getPerMonthInterest(invest, yearRate, month);
        BigDecimal lixicount = getInterestCount(invest, yearRate, month);
        BigDecimal allcount = getPrincipalInterestCount(invest, yearRate, month);
        
        
        result.put("allMonth", month);//总月数
        result.put("benxi", benxi);//成本+利息
//        result.put("benjin", mapPrincipal.get(1));//首月本金
//        result.put("firstMapInterest", mapInterest.get(1));//首月利息
        result.put("lixicount", lixicount);//总利息
        result.put("allcount", allcount);//本息合计
        
        System.out.println("等额本息---每月本息:" + benxi);
        System.out.println("等额本金---首月本金:" + mapPrincipal.get(1));
        System.out.println("等额本息---每月本金:" + mapPrincipal);
        System.out.println("等额本息---每月利息:" + mapInterest);
        System.out.println("等额本息---首月利息:" + mapInterest.get(1));
        System.out.println("等额本息---总利息:" + lixicount);
        System.out.println("等额本息---本息合计:" + allcount);
        return result;
    }
    
    /**
     * 等额本息组合贷
     * @param invest1 公基金
     * @param yearRate1 公积金年利率
     * @param invest2 商贷金额
     * @param yearRate2 商贷年利率
     * @param totalMonth 贷款年限
     * @return
     */
    public static Map<String ,Object> getAverageCapitalPlusInterestAll(double invest1, double yearRate1, double invest2, double yearRate2,int totalMonth) {
        int month = totalMonth*MO;
        
        Map<String, Object> map = new HashMap<String, Object>();
        
        //成本+利息
        BigDecimal benxi1 = getPerMonthPrincipalInterest(invest1, yearRate1, month);
        //总利息
        BigDecimal lixicount1 = getInterestCount(invest1, yearRate1, month);
        //合计
        BigDecimal allcount1 = getPrincipalInterestCount(invest1, yearRate1, month);
        
        //成本+利息
        BigDecimal benxi2 = getPerMonthPrincipalInterest(invest2, yearRate2, month);
        //总利息
        BigDecimal lixicount2 = getInterestCount(invest2, yearRate2, month);
        //合计
        BigDecimal allcount2 = getPrincipalInterestCount(invest2, yearRate2, month);
        
        DecimalFormat df = new DecimalFormat("#.00");
        
        map.put("allMonth", month);//总月数
        map.put("benxi", df.format(benxi1.setScale(2, BigDecimal.ROUND_HALF_UP).add(benxi2.setScale(2, BigDecimal.ROUND_HALF_UP))));//成本+利息
        map.put("lixicount", df.format(lixicount1.add(lixicount2)));//总利息
        map.put("allcount", df.format(allcount1.add(allcount2)));//本息合计
        return map;
    }
    
    
    /**
     * 等额本息计算获取还款方式为等额本息的每月偿还本金和利息
     * 
     * 公式:每月偿还本息=〔贷款本金×月利率×(1+月利率)^还款月数〕÷〔(1+月利率)^还款月数-1〕
     * 
     * @param invest
     *            总借款额(贷款本金)
     * @param yearRate
     *            年利率
     * @param month
     *            还款总月数
     * @return 每月偿还本金和利息,不四舍五入,直接截取小数点最后两位
     */
    public static BigDecimal getPerMonthPrincipalInterest(double invest, double yearRate, int totalmonth) {
        double monthRate = yearRate / MO;
        BigDecimal monthIncome = new BigDecimal(invest)
                .multiply(new BigDecimal(monthRate * Math.pow(1 + monthRate, totalmonth)))
                .divide(new BigDecimal(Math.pow(1 + monthRate, totalmonth) - 1), 2, BigDecimal.ROUND_UP);
        //return monthIncome.doubleValue();
        return monthIncome;
    }

    /**
     * 等额本息计算获取还款方式为等额本息的每月偿还利息
     * 
     * 公式:每月偿还利息=贷款本金×月利率×〔(1+月利率)^还款月数-(1+月利率)^(还款月序号-1)〕÷〔(1+月利率)^还款月数-1〕
     * 
     * @param invest
     *            总借款额(贷款本金)
     * @param yearRate
     *            年利率
     * @param month
     *            还款总月数
     * @return 每月偿还利息
     */
    public static Map<Integer, BigDecimal> getPerMonthInterest(double invest, double yearRate, int totalmonth) {
        Map<Integer, BigDecimal> map = new HashMap<Integer, BigDecimal>();
        double monthRate = yearRate / MO;
        BigDecimal monthInterest;
        for (int i = 1; i < totalmonth + 1; i++) {
            BigDecimal multiply = new BigDecimal(invest).multiply(new BigDecimal(monthRate));
            BigDecimal sub = new BigDecimal(Math.pow(1 + monthRate, totalmonth))
                    .subtract(new BigDecimal(Math.pow(1 + monthRate, i - 1)));
            monthInterest = multiply.multiply(sub).divide(new BigDecimal(Math.pow(1 + monthRate, totalmonth) - 1), 2,
                    BigDecimal.ROUND_HALF_UP);
            monthInterest = monthInterest.setScale(2, BigDecimal.ROUND_HALF_UP);
            map.put(i, monthInterest);
        }
        return map;
    }

    /**
     * 等额本息计算获取还款方式为等额本息的每月偿还本金
     * 
     * @param invest
     *            总借款额(贷款本金)
     * @param yearRate
     *            年利率
     * @param month
     *            还款总月数
     * @return 每月偿还本金
     */
    public static Map<Integer, BigDecimal> getPerMonthPrincipal(double invest, double yearRate, int totalmonth) {
        double monthRate = yearRate / MO;
        BigDecimal monthIncome = new BigDecimal(invest)
                .multiply(new BigDecimal(monthRate * Math.pow(1 + monthRate, totalmonth)))
                .divide(new BigDecimal(Math.pow(1 + monthRate, totalmonth) - 1), 2, BigDecimal.ROUND_HALF_UP);
        Map<Integer, BigDecimal> mapInterest = getPerMonthInterest(invest, yearRate, totalmonth);
        Map<Integer, BigDecimal> mapPrincipal = new HashMap<Integer, BigDecimal>();

        for (Map.Entry<Integer, BigDecimal> entry : mapInterest.entrySet()) {
            mapPrincipal.put(entry.getKey(), monthIncome.subtract(entry.getValue()));
        }
        return mapPrincipal;
    }

    /**
     * 等额本息计算获取还款方式为等额本息的总利息
     * 
     * @param invest
     *            总借款额(贷款本金)
     * @param yearRate
     *            年利率
     * @param month
     *            还款总月数
     * @return 总利息
     */
    public static BigDecimal getInterestCount(double invest, double yearRate, int totalmonth) {
        BigDecimal count = new BigDecimal(0);
        Map<Integer, BigDecimal> mapInterest = getPerMonthInterest(invest, yearRate, totalmonth);

        for (Map.Entry<Integer, BigDecimal> entry : mapInterest.entrySet()) {
            count = count.add(entry.getValue());
        }
        return count;
    }

    /**
     * 应还本金总和
     * 
     * @param invest
     *            总借款额(贷款本金)
     * @param yearRate
     *            年利率
     * @param month
     *            还款总月数
     * @return 应还本金总和
     */
    public static BigDecimal getPrincipalInterestCount(double invest, double yearRate, int totalmonth) {
        double monthRate = yearRate / MO;
        BigDecimal perMonthInterest = new BigDecimal(invest)
                .multiply(new BigDecimal(monthRate * Math.pow(1 + monthRate, totalmonth)))
                .divide(new BigDecimal(Math.pow(1 + monthRate, totalmonth) - 1), 2, BigDecimal.ROUND_HALF_UP);
        BigDecimal count = perMonthInterest.multiply(new BigDecimal(totalmonth));
        count = count.setScale(2, BigDecimal.ROUND_HALF_UP);
        return count;
    }

}

二,等额本金工具类

package com.javajy.util;
import java.math.BigDecimal;
import java.text.DecimalFormat;
import java.util.HashMap;
import java.util.Map;
 
/**
 * 等额本金是指一种贷款的还款方式,是在还款期内把贷款数总额等分,每月偿还同等数额的本金和剩余贷款在该月所产生的利息,这样由于每月的还款本金额固定,
 * 而利息越来越少,借款人起初还款压力较大,但是随时间的推移每月还款数也越来越少。
 */
public class AverageCapitalUtils {
    public static final int MO =12;
    
     public static void main(String[] args) {
//        double invest = 1000000; // 本金
//        int totalMonth = 10;
//        double yearRate = 0.049; // 年利率
//        Map<String ,Object> result = getAverageCapital(invest, yearRate, totalMonth);
//        System.out.println(result);
         System.out.println(getAverageCapitalAll(500000, 0.0325, 500000, 0.049, 10));
     }
    /**
     * 等额本金组合贷
     * @param invest1 公基金
     * @param yearRate1 公积金年利率
     * @param invest2 商贷金额
     * @param yearRate2 商贷年利率
     * @param totalMonth 贷款年限
     * @return
     */
    public static Map<String ,Object> getAverageCapitalAll(double invest1, double yearRate1, double invest2, double yearRate2,int totalMonth) {
        int month = totalMonth*MO;
        
        Map<String, Object> map = new HashMap<String, Object>();
        
        //公积金首月成本+利息
        BigDecimal benxi1 = BigDecimal.valueOf(getPerMonthPrincipalInterest(invest1, yearRate1, month).get(1));
        //总利息
        BigDecimal lixicount1 = getInterestCount(invest1, yearRate1, month);
        
        //商贷首月成本+利息
        BigDecimal benxi2 = BigDecimal.valueOf(getPerMonthPrincipalInterest(invest2, yearRate2, month).get(1));
        //总利息
        BigDecimal lixicount2 = getInterestCount(invest2, yearRate2, month);
        
        DecimalFormat df = new DecimalFormat("#.00");
        
        BigDecimal allcount = BigDecimal.valueOf(invest1).add(lixicount1).add(lixicount2).add(BigDecimal.valueOf(invest2));
        
        map.put("allMonth", month);//总月数
        map.put("benxi", df.format(benxi1.add(benxi2)) );//成本+利息
        map.put("lixicount", df.format(lixicount1.add(lixicount2)));//总利息
        map.put("allcount", df.format(allcount));//本息合计
        return map;
    }
    
    /**
     * 等额本金
     * @param invest
     * @param yearRate
     * @param totalMonth
     * @return
     */
    public static Map<String ,Object> getAverageCapital(double invest, double yearRate, int totalMonth) {
        int month = totalMonth*MO;
        
        Map<String ,Object> result = new HashMap<String ,Object>();
        
        Map<Integer, Double> benxi = getPerMonthPrincipalInterest(invest, yearRate, month);
        BigDecimal benjin = getPerMonthPrincipal(invest, month);
        Map<Integer, Double> mapInterest = getPerMonthInterest(invest, yearRate, month);
        BigDecimal lixicount = getInterestCount(invest, yearRate, month);
        BigDecimal allcount = BigDecimal.valueOf(invest).add(lixicount);
        
        result.put("allMonth", month);//总月数
        result.put("benxi", benxi.get(1));//首月成本+利息
//        result.put("benjin", benjin);//每月还款本金
//        result.put("firstMapInterest", mapInterest.get(1));//首月利息
        result.put("lixicount", lixicount);//总利息
        result.put("allcount", allcount);//合计
        
        System.out.println("等额本金---每月本息:" + benxi );
        System.out.println("等额本金---首月本息:" + benxi.get(1));
        System.out.println("等额本金---每月本金:" + benjin);
        System.out.println("等额本金---每月利息:" + mapInterest);
        System.out.println("等额本金---首月利息:" + mapInterest.get(1));
        System.out.println("等额本金---总利息:" + lixicount);
        System.out.println("等额本金---本息合计:" + allcount);
        System.out.println("---------------");
        
        return result;
    }
 
    /**
     * 等额本金计算获取还款方式为等额本金的每月偿还本金和利息
     * 
     * 公式:每月偿还本金=(贷款本金÷还款月数)+(贷款本金-已归还本金累计额)×月利率
     * 
     * @param invest
     *            总借款额(贷款本金)
     * @param yearRate
     *            年利率
     * @param month
     *            还款总月数
     * @return 每月偿还本金和利息,不四舍五入,直接截取小数点最后两位
     */
    public static Map<Integer, Double> getPerMonthPrincipalInterest(double invest, double yearRate, int totalMonth) {
        Map<Integer, Double> map = new HashMap<Integer, Double>();
        // 每月本金
        BigDecimal monthPri1 = getPerMonthPrincipal(invest, totalMonth);
        double monthPri = monthPri1.doubleValue();
        // 获取月利率
        double monthRate = yearRate / MO;
        monthRate = new BigDecimal(monthRate).setScale(6, BigDecimal.ROUND_HALF_UP).doubleValue();
        for (int i = 1; i <= totalMonth; i++) {
            double monthRes = monthPri + (invest - monthPri * (i - 1)) * monthRate;
            monthRes = new BigDecimal(monthRes).setScale(2, BigDecimal.ROUND_HALF_UP).doubleValue();
            map.put(i, monthRes);
        }
        return map;
    }

    /**
     * 等额本金计算获取还款方式为等额本金的每月偿还利息
     * 
     * 公式:每月应还利息=剩余本金×月利率=(贷款本金-已归还本金累计额)×月利率
     * 
     * @param invest
     *            总借款额(贷款本金)
     * @param yearRate
     *            年利率
     * @param month
     *            还款总月数
     * @return 每月偿还利息
     */
    public static Map<Integer, Double> getPerMonthInterest(double invest, double yearRate, int totalMonth) {
        Map<Integer, Double> inMap = new HashMap<Integer, Double>();
        double principal = getPerMonthPrincipal(invest, totalMonth).doubleValue();
        Map<Integer, Double> map = getPerMonthPrincipalInterest(invest, yearRate, totalMonth);
        for (Map.Entry<Integer, Double> entry : map.entrySet()) {
            BigDecimal principalBigDecimal = new BigDecimal(principal);
            BigDecimal principalInterestBigDecimal = new BigDecimal(entry.getValue());
            BigDecimal interestBigDecimal = principalInterestBigDecimal.subtract(principalBigDecimal);//
            interestBigDecimal = interestBigDecimal.setScale(2, BigDecimal.ROUND_HALF_UP);
            inMap.put(entry.getKey(), interestBigDecimal.doubleValue());
        }
        return inMap;
    }

    /**
     * 等额本金计算获取还款方式为等额本金的每月偿还本金
     * 
     * 公式:每月应还本金=贷款本金÷还款月数
     * 
     * @param invest
     *            总借款额(贷款本金)
     * @param yearRate
     *            年利率
     * @param month
     *            还款总月数
     * @return 每月偿还本金
     */
    public static BigDecimal getPerMonthPrincipal(double invest, int totalMonth) {
        BigDecimal monthIncome = new BigDecimal(invest).divide(new BigDecimal(totalMonth), 2, BigDecimal.ROUND_HALF_UP);
        return monthIncome;
    }

    /**
     * 等额本金计算获取还款方式为等额本金的总利息
     * 
     * @param invest
     *            总借款额(贷款本金)
     * @param yearRate
     *            年利率
     * @param month
     *            还款总月数
     * @return 总利息
     */
    public static BigDecimal getInterestCount(double invest, double yearRate, int totalMonth) {
        BigDecimal count = new BigDecimal(0);
        Map<Integer, Double> mapInterest = getPerMonthInterest(invest, yearRate, totalMonth);

        for (Map.Entry<Integer, Double> entry : mapInterest.entrySet()) {
            count = count.add(new BigDecimal(entry.getValue()));
        }
        return count;
    }
}

 

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值