- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章java中每月等额与先息后本计算由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
一般信用贷款会提供两种还款方式:每月等额或者先息后本。每月等额,就是每月归还等同的部分本金和利息,你手里在使用的本金其实是逐月减少的。先息后本就是先还利息,到期归还本金.
每月等额 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
import
java.math.BigDecimal;
import
java.util.Calendar;
import
java.util.Date;
/**
* <p>Title: 等额本息还款工具类</p>
*
*/
public
class
CPMUtils{
/**
* <p>Description: 每月还款总额。〔贷款本金×月利率×(1+月利率)^还款月数〕÷〔(1+月利率)^还款月数-1〕</p>
* @param principal 贷款本金
* @param monthlyInterestRate 月利率
* @param amount 期数
* @return
*/
public
static
BigDecimal monthlyRepayment(BigDecimal principal, BigDecimal monthlyInterestRate,
int
amount){
//(1+月利率)^还款月数
BigDecimal temp = monthlyInterestRate.add(MoneyUtils.ONE).pow(amount);
return
principal.multiply(monthlyInterestRate)
.multiply(temp)
.divide(temp.subtract(MoneyUtils.ONE), MoneyUtils.MATHCONTEXT);
}
/**
* <p>Description: 月还款利息。(贷款本金×月利率-月还款额)*(1+月利率)^(当前期数-1)+月还款额</p>
* @param principal 贷款本金
* @param monthlyInterestRate 月利率
* @param monthlyRepayment 月还款额
* @param number 当前期数
* @return
*/
public
static
BigDecimal monthlyInterest(BigDecimal principal, BigDecimal monthlyInterestRate, BigDecimal monthlyRepayment,
int
number){
//(1+月利率)^(当前期数-1)
BigDecimal temp = monthlyInterestRate.add(MoneyUtils.ONE).pow(number -
1
);
return
principal.multiply(monthlyInterestRate)
.subtract(monthlyRepayment)
.multiply(temp).add(monthlyRepayment, MoneyUtils.MATHCONTEXT);
}
/**
* <p>Description: 还款总利息。期数×贷款本金×月利率×(1+月利率)^期数÷〔(1+月利率)^期数-1〕-贷款本金 </p>
* @param principal 贷款本金
* @param monthlyInterestRate 月利率
* @param amount 还款期数
* @return
*/
public
static
BigDecimal interest(BigDecimal principal, BigDecimal monthlyInterestRate,
int
amount){
//(1+月利率)^期数
BigDecimal temp = monthlyInterestRate.add(MoneyUtils.ONE).pow(amount);
return
new
BigDecimal(amount)
.multiply(principal)
.multiply(monthlyInterestRate)
.multiply(temp)
.divide(temp.subtract(MoneyUtils.ONE), MoneyUtils.MATHCONTEXT)
.subtract(principal, MoneyUtils.MATHCONTEXT);
}
/**
* <p>Description: 月还款本金。已经精确到分位,未做单位换算</p>
* @param principal 贷款本金
* @param monthlyInterestRate 月利率
* @param monthlyRepayment 月还款额
* @param number 当前期数
* @return
*/
public
static
BigDecimal monthlyPrincipal(BigDecimal principal, BigDecimal monthlyInterestRate, BigDecimal monthlyRepayment,
int
number){
BigDecimal monthInterest = monthlyInterest(principal, monthlyInterestRate, monthlyRepayment, number);
//月还款额-月还款利息
return
monthlyRepayment.subtract(monthInterest).setScale(MoneyUtils.MONEYSHOWSCALE, MoneyUtils.SAVEROUNDINGMODE);
}
/**
* <p>Description: 月还款本金。已经精确到分位,未做单位换算</p>
* @param monthRepayment 月还款总额
* @param monthInterest 月还款利息
* @return
*/
public
static
BigDecimal monthPrincipal(BigDecimal monthRepayment, BigDecimal monthInterest){
//月还款总额-月还款利息
return
monthRepayment.subtract(monthInterest).setScale(MoneyUtils.MONEYSHOWSCALE, MoneyUtils.SAVEROUNDINGMODE);
}
}
|
先息后本 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
import
java.math.BigDecimal;
/**
* <p>Title: 先息后本还款方式工具类型</p>
*/
public
class
BIAPPUtils
extends
RepaymentUtils {
/**
* <p>Description: 月还款利息 贷款本金×月利率 </p>
* @param loan 贷款本金
* @param monthlyInterestRate 月利率
* @return
*/
public
static
BigDecimal monthlyInterest(BigDecimal loan, BigDecimal monthlyInterestRate){
return
loan.multiply(monthlyInterestRate, MoneyUtils.MATHCONTEXT);
}
/**
* <p>Description: 还款总利息 贷款本金×月利率×期数</p>
* @param loan 贷款本金
* @param monthlyInterestRate 月利率
* @param number 期数
* @return
*/
public
static
BigDecimal interest(BigDecimal loan, BigDecimal monthlyInterestRate,
int
number){
return
loan.multiply(monthlyInterestRate).multiply(
new
BigDecimal(number), MoneyUtils.MATHCONTEXT);
}
/**
* <p>Description: 月还款额</p>
* @param loan 贷款本金
* @param monthlyInterestRate 月利率
* @param amount 期数
* @param curNumber 当前期数
* @return
*/
public
static
BigDecimal monthlyRepayment(BigDecimal loan, BigDecimal monthlyInterestRate,
int
amount,
int
curNumber){
BigDecimal monthlyInterest = monthlyInterest(loan, monthlyInterestRate);
if
(amount == curNumber){
return
monthlyInterest.add(loan, MoneyUtils.MATHCONTEXT);
//最后月还款额
}
else
{
return
monthlyInterest;
}
}
}
|
*金额计算工具类 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
|
import
java.math.BigDecimal;
import
java.math.MathContext;
import
java.math.RoundingMode;
import
java.text.NumberFormat;
public
class
MoneyUtils {
/**
* 标度(小数位数)
*/
public
static
final
int
SCALE =
10
;
/**
* 金钱显示标度(小数位数)
*/
public
static
final
int
MONEYSHOWSCALE =
2
;
/**
* 利率显示标度(小数位数)
*/
public
static
final
int
INTERESTRATESHOWSCALE =
4
;
/**
* 精度
*/
public
static
final
int
PRECISION =
30
;
/**
* 保存舍入规则
*/
public
static
final
RoundingMode SAVEROUNDINGMODE = RoundingMode.HALF_UP;
/**
* 是否舍去小数点最后的零
*/
public
static
boolean
STRIPTRAILINGZEROS =
true
;
/**
* 运算上下文(设置精度、舍入规则)
*/
public
static
final
MathContext MATHCONTEXT =
new
MathContext(PRECISION, SAVEROUNDINGMODE);
/**
* 每年天数
*/
public
static
final
String YEARDAYS =
"360"
;
/**
* 每年月数
*/
public
static
final
String YEARMOTHS =
"12"
;
/**
* 每月天数
*/
public
static
final
String MOTHDAYS =
"30"
;
/**
* 数字“1”
*/
public
static
final
BigDecimal ONE =
new
BigDecimal(
1
);
/**
* 数字“100”
*/
public
static
final
BigDecimal HUNDRED =
new
BigDecimal(
100
);
/**
* 数字“0.01”
*/
public
static
final
BigDecimal ONEHUNDREDTH =
new
BigDecimal(
0.01
);
public
static
BigDecimal newBigDecimal(String str){
return
(str ==
null
|| str.trim().isEmpty()) ? BigDecimal.ZERO :
new
BigDecimal(str);
}
/**
* <p>Description: 加法返回格式化结果数字</p>
* @param addend
* @param augend
* @return
*/
public
static
BigDecimal add(BigDecimal addend, BigDecimal augend){
return
formatMoney(addend.add(augend, MATHCONTEXT));
}
/**
* <p>Description: 加法返回格式化结果数字</p>
* @param addend
* @param augend
* @return
*/
public
static
BigDecimal add(String addend, String augend){
BigDecimal decimalAddend = newBigDecimal(addend);
BigDecimal decimalAugend = newBigDecimal(augend);
return
formatMoney(decimalAddend.add(decimalAugend, MATHCONTEXT));
}
/**
* <p>Description: 加法返回格式化结果字符串</p>
* @param addend
* @param augend
* @return
*/
public
static
String addToString(BigDecimal addend, BigDecimal augend){
return
formatToString(addend.add(augend, MATHCONTEXT));
}
/**
* <p>Description: 加法返回格式化结果字符串</p>
* @param addend
* @param augend
* @return
*/
public
static
String addToString(String addend, String augend){
BigDecimal decimalAddend = newBigDecimal(addend);
BigDecimal decimalAugend = newBigDecimal(augend);
return
formatToString(decimalAddend.add(decimalAugend, MATHCONTEXT));
}
/**
* <p>Description: 减法返回格式化结果数字</p>
* @param minuend
* @param subtrahend
* @return
*/
public
static
BigDecimal subtract(BigDecimal minuend, BigDecimal subtrahend){
return
formatMoney(minuend.subtract(subtrahend, MATHCONTEXT));
}
/**
* <p>Description: 减法返回格式化结果数字</p>
* @param minuend
* @param subtrahend
* @return
*/
public
static
BigDecimal subtract(String minuend, String subtrahend){
BigDecimal decimalMinuend = newBigDecimal(minuend);
BigDecimal decimalSubtrahend = newBigDecimal(subtrahend);
return
formatMoney(decimalMinuend.subtract(decimalSubtrahend, MATHCONTEXT));
}
/**
* <p>Description: 减法返回格式化结果字符串</p>
* @param minuend
* @param subtrahend
* @return
*/
public
static
String subtractToString(BigDecimal minuend, BigDecimal subtrahend){
return
formatToString(minuend.subtract(subtrahend, MATHCONTEXT));
}
/**
* <p>Description: 减法返回格式化结果字符串</p>
* @param minuend
* @param subtrahend
* @return
*/
public
static
String subtractToString(String minuend, String subtrahend){
BigDecimal decimalMinuend = newBigDecimal(minuend);
BigDecimal decimalSubtrahend = newBigDecimal(subtrahend);
return
formatToString(decimalMinuend.subtract(decimalSubtrahend, MATHCONTEXT));
}
/**
* <p>Description: 乘法返回格式化结果数字</p>
* @param multiplier
* @param multiplicand
* @return
*/
public
static
BigDecimal multiply(BigDecimal multiplier, BigDecimal multiplicand){
return
formatMoney(multiplier.multiply(multiplicand, MATHCONTEXT));
}
/**
* <p>Description: 乘法返回格式化结果数字</p>
* @param multiplier
* @param multiplicand
* @return
*/
public
static
BigDecimal multiply(String multiplier, String multiplicand){
BigDecimal decimalMultiplier = newBigDecimal(multiplier);
BigDecimal decimalMultiplicand = newBigDecimal(multiplicand);
return
formatMoney(decimalMultiplier.multiply(decimalMultiplicand, MATHCONTEXT));
}
/**
* <p>Description: 乘法返回格式化结果字符串</p>
* @param multiplier
* @param multiplicand
* @return
*/
public
static
String multiplyToString(BigDecimal multiplier, BigDecimal multiplicand){
return
formatToString(multiplier.multiply(multiplicand, MATHCONTEXT));
}
/**
* <p>Description: 乘法返回格式化结果字符串</p>
* @param multiplier
* @param multiplicand
* @return
*/
public
static
String multiplyToString(String multiplier, String multiplicand){
BigDecimal decimalMultiplier = newBigDecimal(multiplier);
BigDecimal decimalMultiplicand = newBigDecimal(multiplicand);
return
formatToString(decimalMultiplier.multiply(decimalMultiplicand, MATHCONTEXT));
}
/**
* <p>Description: 除法返回格式化结果数字</p>
* @param dividend
* @param divisor
* @return
*/
public
static
BigDecimal divide(BigDecimal dividend, BigDecimal divisor){
return
formatMoney(dividend.divide(divisor, MATHCONTEXT));
}
/**
* <p>Description: 除法返回格式化结果数字</p>
* @param dividend
* @param divisor
* @return
*/
public
static
BigDecimal divide(String dividend, String divisor){
BigDecimal decimalDividend = newBigDecimal(dividend);
BigDecimal decimalDivisor = newBigDecimal(divisor);
return
formatMoney(decimalDividend.divide(decimalDivisor, MATHCONTEXT));
}
/**
* <p>Description: 除法返回格式化结果字符串</p>
* @param dividend
* @param divisor
* @return
*/
public
static
String divideToString(BigDecimal dividend, BigDecimal divisor){
return
formatToString(dividend.divide(divisor, MATHCONTEXT));
}
/**
* <p>Description: 除法返回格式化结果字符串</p>
* @param dividend
* @param divisor
* @return
*/
public
static
String divideToString(String dividend, String divisor){
BigDecimal decimalDividend = newBigDecimal(dividend);
BigDecimal decimalDivisor = newBigDecimal(divisor);
return
formatToString(decimalDividend.divide(decimalDivisor, MATHCONTEXT));
}
/**
* <p>Description: 月利率计算</p>
* @param yearInterestRate
* @return
*/
public
static
BigDecimal monthInterestRate(BigDecimal yearInterestRate){
BigDecimal dayInterestRate = MoneyUtils.divide(yearInterestRate, YEARDAYS).setScale(
5
, RoundingMode.CEILING);
System.err.println(dayInterestRate);
BigDecimal monthInterestRate = dayInterestRate.multiply(newBigDecimal(MOTHDAYS));
System.err.println(monthInterestRate);
return
monthInterestRate;
}
/**
* <p>Description: 按既定小数位数格式化金额保存</p>
* @param result
* @return
*/
public
static
BigDecimal formatMoney(BigDecimal result){
return
result.setScale(SCALE, SAVEROUNDINGMODE);
}
/**
* <p>Description: 按既定小数位数格式化金额显示</p>
* @param resultStr 要格式化的数
* @param multiple 乘以的倍数
* @return
*/
public
static
String formatMoneyToShow(String resultStr, BigDecimal multiple){
BigDecimal result = newBigDecimal(resultStr);
return
MoneyUtils.formatToString(MoneyUtils.formatMoneyToShow(result, multiple));
}
/**
* <p>Description: 按既定小数位数格式化金额显示</p>
* @param result 要格式化的数
* @param multiple 乘以的倍数
* @return
*/
public
static
BigDecimal formatMoneyToShow(BigDecimal result, BigDecimal multiple){
return
result.multiply(multiple).setScale(MONEYSHOWSCALE, SAVEROUNDINGMODE);
}
/**
* <p>Description: 按既定小数位数格式化利率显示</p>
* @param result 要格式化的数
* @param multiple 乘以的倍数
* @return
*/
public
static
BigDecimal formatInterestRateToShow(BigDecimal result, BigDecimal multiple){
return
result.multiply(multiple).setScale(INTERESTRATESHOWSCALE, SAVEROUNDINGMODE);
}
/**
* <p>Description: 按既定小数位数格式化显示</p>
* @param result 要格式化的数
* @param scale 显示标度(小数位数)
* @return
*/
public
static
BigDecimal formatToShow(BigDecimal result,
int
scale){
return
result.setScale(scale, SAVEROUNDINGMODE);
}
/**
* <p>Description: 格式化为字符串,进行去零不去零操作</p>
* @param result
* @return
*/
public
static
String formatToString(BigDecimal result){
if
(result ==
null
){
return
""
;
}
else
{
return
STRIPTRAILINGZEROS ? result.stripTrailingZeros().toPlainString() : result.toPlainString();
}
}
/**
* <p>Description: 按既定小数位数格式化为货币格式</p>
* @param result
* @return
*/
public
static
String formatToCurrency(BigDecimal result){
BigDecimal temp = result.divide(HUNDRED, SAVEROUNDINGMODE);
NumberFormat numberFormat = NumberFormat.getCurrencyInstance();
return
numberFormat.format(STRIPTRAILINGZEROS ? temp.stripTrailingZeros() : temp);
}
public
static
String formatToPercent(BigDecimal result){
BigDecimal temp = result.divide(HUNDRED, SAVEROUNDINGMODE);
NumberFormat numberFormat = NumberFormat.getPercentInstance();
return
numberFormat.format(STRIPTRAILINGZEROS ? temp.stripTrailingZeros() : temp);
}
/**
* <p>Description:格式化数字为千分位显示; </p>
* @param text
* @return
*/
public
static
String fmtMicrometer(String text){
DecimalFormat df =
null
;
if
(text.indexOf(
"."
) >
0
) {
if
(text.length() - text.indexOf(
"."
)-
1
==
0
){
df =
new
DecimalFormat(
"###,##0."
);
}
else
if
(text.length() - text.indexOf(
"."
)-
1
==
1
){
df =
new
DecimalFormat(
"###,##0.0"
);
}
else
{
df =
new
DecimalFormat(
"###,##0.00"
);
}
}
else
{
df =
new
DecimalFormat(
"###,##0.00"
);
}
double
number =
0.0
;
try
{
number = Double.parseDouble(text);
}
catch
(Exception e) {
number =
0.0
;
}
return
df.format(number);
}
}
|
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持我! 。
原文链接:http://www.cnblogs.com/seekingway/p/6635260.html 。
最后此篇关于java中每月等额与先息后本计算的文章就讲到这里了,如果你想了解更多关于java中每月等额与先息后本计算的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
几个月前,我做了一个功能,我的应用程序正在等待用户文档并做出相应的响应。直到我对项目进行优化并将其更新到最新版本之前,它一直是一种魅力。 如果存在用户文档,则流将产生该文档并关闭该流。 如果云Fire
Stack Overflow 有几个 examples其中函数首先获得可升级锁,然后通过升级获得独占访问。我的理解是,如果不小心使用,这可能会导致死锁,因为两个线程可能都获得了可升级/共享锁,然后都尝
这个问题在这里已经有了答案: MVC 4 Code First ForeignKeyAttribute on property ... on type ... is not valid (1 个回答
以下是部分代码。我需要在 finally 子句中关闭资源。我需要先调用 closeEntry() 还是 close()?我收到一些错误消息。 Error closing the zipoutjava.
我想使用 RxJS-DOM 观察 mousewheel 事件,这样当第一个事件触发时,我转发它然后删除所有值,直到后续值之间的延迟超过先前指定的持续时间。 我想象的运算符可能看起来像: Rx.DOM.
版本似乎与安装的不同。 我在 npm install 上收到警告 我将二进制文件安装到我的家庭/开发目录中,但它不适用于 sudo。所以我安装了apt。 (注意:我并没有真正安装,我提取并将路径放在/
我正在尝试展示 GAN 网络在某些指定时期的结果。打印当前结果的功能以前与 TF 一起使用。我需要换成 pytorch。 def show_result(G_net, z_, num_epoch, s
我是一名优秀的程序员,十分优秀!