激情久久久_欧美视频区_成人av免费_不卡视频一二三区_欧美精品在欧美一区二区少妇_欧美一区二区三区的

服務器之家:專注于服務器技術及軟件下載分享
分類導航

PHP教程|ASP.NET教程|Java教程|ASP教程|編程技術|正則表達式|C/C++|IOS|C#|Swift|Android|VB|R語言|JavaScript|易語言|vb.net|

服務器之家 - 編程語言 - Java教程 - Java實現將數字日期翻譯成英文單詞的工具類實例

Java實現將數字日期翻譯成英文單詞的工具類實例

2021-01-11 14:27索隆 Java教程

這篇文章主要介紹了Java實現將數字日期翻譯成英文單詞的工具類,結合完整實例形式分析了Java日期轉換與字符串操作相關實現技巧,需要的朋友可以參考下

本文實例講述了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
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
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
package com.sunyard.etp.ag.util;
import java.math.BigDecimal;
import java.util.Arrays;
public class DateEngUtil {
  /**
   * @param args
   */
  public static void main(String[] args) {
    // TODO Auto-generated method stub
    String dd="19870401";
    String res=formatDateEng(dd);
    System.out.println(dd+",英文==="+res);
    String dd2="19000823";
    String res2=formatDateEng(dd2);
    System.out.println(dd2+",英文==="+res2);
    String dd3="20001231";
    String res3=formatDateEng(dd3);
    System.out.println(dd3+",英文==="+res3);
    String dd4="20121116";
    String res4=formatDateEng(dd4);
    System.out.println(dd4+",英文==="+res4);
    String dd5="20150901";
    String res5=formatDateEng(dd5);
    System.out.println(dd5+",英文==="+res5);
    /*
19870401,英文===nineteen eighty seven, April, first
19000823,英文===nineteen hundred, August, twenty third
20001231,英文===two thousand, December, thirty first
20121116,英文===two thousand and twelve, November, sixteenth
20150901,英文===two thousand and fifteen, September, first
     */
    //支持最多4位數字的翻譯
    String nn1="12";
    String r1=translateNum9999NoZero(nn1);
    System.out.println(nn1+",英文==="+r1);
    String nn2="561";
    String r2=translateNum9999NoZero(nn2);
    System.out.println(nn2+",英文==="+r2);
    String nn3="5589";
    String r3=translateNum9999NoZero(nn3);
    System.out.println(nn3+",英文==="+r3);
    /*
12,英文===twelve
561,英文===five hundred and sixty one
5589,英文===five thousand five hundred and eighty nine
     */
    String cardNum="6210910002000718183";
    String cardn=translateCardNumber(cardNum);
    System.out.println(cardNum+",英文==="+cardn);
/*
6210910002000718183,英文=== six two one zero nine one zero zero zero two zero zero zero seven one eight one eight three
     */
    String fff="3394.56";
    System.out.println("錢"+fff+"==="+translateMoney(fff));
    String fff2="123456789123456.45";
    System.out.println("錢"+fff2+"==="+translateMoney(fff2));
    String fff3="78.00";
    System.out.println("錢"+fff3+"==="+translateMoney(fff3));
    String fff4="12000089103456.45";
    System.out.println("錢"+fff4+"==="+translateMoney(fff4));
    String fff5="123456789.12";
    System.out.println("錢"+fff5+"==="+translateMoney(fff5));
    /*
錢3394.56===three thousand, three hundred and ninety four  point five six
錢123456789123456.45===one hundred and twenty three trillion, four hundred and fifty six billion, seven hundred and eighty nine million, one hundred and twenty three thousand, four hundred and fifty six  point four five
錢78.00===seventy eight  point zero zero
錢12000089103456.45===twelve trillion, eighty nine million, one hundred and three thousand, four hundred and fifty six  point four five
錢123456789.12===one hundred and twenty three million, four hundred and fifty six thousand, seven hundred and eighty nine  point one two
     */
    String p1="0%";
    System.out.println("百分比"+p1+"==="+translatePercent(p1));
    String p2="0.0%";
    System.out.println("百分比"+p2+"==="+translatePercent(p2));
    String p3="0.00%";
    System.out.println("百分比"+p3+"==="+translatePercent(p3));
    String p4="0.23%";
    System.out.println("百分比"+p4+"==="+translatePercent(p4));
    String p5="0.05%";
    System.out.println("百分比"+p5+"==="+translatePercent(p5));
    String p6="56.00%";
    System.out.println("百分比"+p6+"==="+translatePercent(p6));
    String p7="56.67%";
    System.out.println("百分比"+p7+"==="+translatePercent(p7));
    String p8="237.90%";
    System.out.println("百分比"+p8+"==="+translatePercent(p8));
    /*
百分比0%===zero point zero zero percent
百分比0.0%===zero point zero zero percent
百分比0.00%===zero point zero zero percent
百分比0.23%=== zero  point two three percent
百分比0.05%=== zero  point zero five percent
百分比56.00%===fifty six point zero zero percent
百分比56.67%===fifty six point six seven percent
百分比237.90%===two hundred and thirty seven point nine zero percent
     */
  }
  /**
   * 格式化日期
   *
   * @return
   *
   */
  public static String formatDate(String Date){
    try{
       return Date.substring(0,4)+"年"+Date.substring(4,6)+"月"+Date.substring(6,8)+"日";
     }catch (Exception e) {
       return "";
     }
  }
  /**
   * 格式化日期轉化成能播報的英文
   *
   * @return
   *
   */
  public static String formatDateEng(String Date){
    if(Date==null||Date.trim().equals("")){
      return "";
    }
    if(Date.trim().length()<8){
      return "";
    }
    String DateStr=Date.trim();
    String year=DateStr.substring(0,4);
    String month=DateStr.substring(4,6);
    String date2=DateStr.substring(6,8);
    String res="";
    res=translateYear(year)+", "+translateMonth(month)+", "+translateDate(date2);
    return res;
  }
  /**
   * 年轉化成英文單詞
   * @param month
   * @return
   */
  public static String translateYear(String year) {
    if (year == null || year.trim().equals("")) {
      return "";
    }
    String res = "";
    int yearNum = Integer.valueOf(year);
    if(year.endsWith("00")){//xx00
      switch (yearNum) {
      case 2000:
        res = "two thousand";//
        break;
      case 1900:
        res = "nineteen hundred";//
        break;
      case 1800:
        res = "eighteen hundred";//
        break;
      case 1700:
        res = "seventeenth hundred";//
        break;
      case 1600:
        res = "sixteenth hundred";//
        break;
      case 1500:
        res = "fifteenth hundred";//
        break;
      default:
        res = "";
      }
    }else{//19xx,20xx,21xx
      String qian2=year.substring(0, 2);
      String hou2=year.substring(2, 4);
      int qian2Num = Integer.valueOf(qian2);
      int hou2Num = Integer.valueOf(hou2);
      if(year.startsWith("20")){//20xx
        res = "two thousand and "+translateNum20wei(hou2Num);
      }else{//19xx,21xx
        res = translateNum20wei(qian2Num)+" "+translateNum20wei(hou2Num);
      }
    }
    return res;
  }
  /**
   * 月份轉化成英文單詞
   * @param month
   * @return
   */
  public static String translateMonth(String month) {
    if (month == null || month.trim().equals("")) {
      return "";
    }
    String res = "";
    int mon = Integer.valueOf(month);
    switch (mon) {
    case 1:
      res = "January";// Jan
      break;
    case 2:
      res = "February";// Feb
      break;
    case 3:
      res = "March";// Mar
      break;
    case 4:
      res = "April";// Apr
      break;
    case 5:
      res = "May";// May
      break;
    case 6:
      res = "June";// Jun
      break;
    case 7:
      res = "July";// Jul
      break;
    case 8:
      res = "August";// Aug
      break;
    case 9:
      res = "September";// Sep
      break;
    case 10:
      res = "October";// Oct
      break;
    case 11:
      res = "November";// Nov
      break;
    case 12:
      res = "December";// Dec
      break;
    default:
      res = "";
    }
    return res;
  }
  /**
   * 幾號轉化成英文單詞
   * @param date
   * @return
   */
  public static String translateDate(String date) {
    if (date == null || date.trim().equals("")) {
      return "";
    }
    String res = "";
    int dateNum = Integer.valueOf(date);
    switch (dateNum) {
    case 1:
      res = "first";//
      break;
    case 2:
      res = "second";//
      break;
    case 3:
      res = "third";//
      break;
    case 4:
      res = "fourth";//
      break;
    case 5:
      res = "fifth";//
      break;
    case 6:
      res = "sixth";//
      break;
    case 7:
      res = "seventh";//
      break;
    case 8:
      res = "eigth";//
      break;
    case 9:
      res = "ninth";//
      break;
    case 10:
      res = "tenth";//
      break;
    case 11:
      res = "eleventh";//
      break;
    case 12:
      res = "twelfth";//
      break;
    case 13:
      res = "thirteenth";//
      break;
    case 14:
      res = "fourteenth";//
      break;
    case 15:
      res = "fifteenth";//
      break;
    case 16:
      res = "sixteenth";//
      break;
    case 17:
      res = "seventeenth";//
      break;
    case 18:
      res = "eighteenth";//
      break;
    case 19:
      res = "nineteenth";//
      break;
    case 20:
      res = "twentieth";//
      break;
    case 21:
      res = "twenty first";//
      break;
    case 22:
      res = "twenty second";//
      break;
    case 23:
      res = "twenty third";//
      break;
    case 24:
      res = "twenty fourth";//
      break;
    case 25:
      res = "twenty fifth";//
      break;
    case 26:
      res = "twenty sixth";//
      break;
    case 27:
      res = "twenty seventh";//
      break;
    case 28:
      res = "twenty eigth";//
      break;
    case 29:
      res = "twenty ninth";//
      break;
    case 30:
      res = "thirtieth";//
      break;
    case 31:
      res = "thirty first";//
      break;
    default:
      res = "";
    }
    return res;
  }
  /////////////////
  /**
   * 翻譯1-19
   * @param num
   * @return
   */
  public static String translateNum19(int num){
    String res = "";
    switch (num) {
    case 0:res = " ";break;
    case 1:res = "one";break;
    case 2:res = "two";break;
    case 3:res = "three";break;
    case 4:res = "four";break;
    case 5:res = "five";break;
    case 6:res = "six";break;
    case 7:res = "seven";break;
    case 8:res = "eight";break;
    case 9:res = "nine";break;
    case 10:res = "ten";break;
    case 11:res = "eleven";break;
    case 12:res = "twelve";break;
    case 13:res = "thirteen";break;
    case 14:res = "fourteen";break;
    case 15:res = "fifteen";break;
    case 16:res = "sixteen";break;
    case 17:res = "seventeen";break;
    case 18:res = "eighteen";break;
    case 19:res = "nineteen";break;
    default:
      res = "";
    }
    return res;
  }
  /**
   * 翻譯十幾,二十幾的讀法
   * @param num
   * @return
   */
  public static String translateNum2090(int num){
    String res = "";
    switch (num) {
    case 20:res = "twenty";break;
    case 30:res = "thirty";break;
    case 40:res = "forty";break;
    case 50:res = "fifty";break;
    case 60:res = "sixty";break;
    case 70:res = "seventy";break;
    case 80:res = "eighty";break;
    case 90:res = "ninety";break;
    default:
      res = "";
    }
    return res;
  }
  /**
   * 翻譯2位數字的讀法
   * @param num
   * @return
   */
  public static String translateNum20wei(int num){
    String res = "";
    int zheng=num/10;//十位
    int yu=num%10;//個位
    if(num<20){
      if(num<10){
        res="zero"+translateNum19(num);
      }else{
        res=translateNum19(num);
      }
    }else{
      res=translateNum2090(zheng*10)+" "+translateNum19(yu);
    }
    return res;
  }
  /**
   * 翻譯2位數字的讀法
   * @param num
   * @return
   */
  public static String translateNum20weiNoZero(int num){
    String res = "";
    int zheng=num/10;//十位
    int yu=num%10;//個位
    if(num<20){
      res=translateNum19(num);
    }else{
      res=translateNum2090(zheng*10)+" "+translateNum19(yu);
    }
    return res;
  }
  /**
   * 翻譯數字的讀法,最多支持到9999,即4位
   * @param num
   * @return
   */
  public static String translateNum9999NoZero(int num){
    String res = "";
    int qian=num/1000;//千位
    int last3=num%1000;
    int bai=last3/100;//百位
    int last2=num%100;
    int shi=last2/10;//十位
    int ge=num%10;//個位
    if(qian!=0){
      res+=translateNum19(qian)+" thousand ";
    }
    if(bai!=0){
      res+=translateNum19(bai)+" hundred ";
    }
    String last2eng=translateNum20weiNoZero(last2);
    if(!res.equals("")&&!(last2eng.trim().equals(""))){
      res+=" and ";
    }
    res+=last2eng+" ";
    return res;
  }
  public static String translateNum9999NoZero(String num){
    if(num==null||num.trim().equals("")){
      return "";
    }
    int nn=Integer.valueOf(num);
    return translateNum9999NoZero(nn);
  }
  ////////////////////////////////////////下面是英文數字的直白讀法,應用場景:卡號/////////////////////////////
  /**
   * 翻譯0123456789
   * @param num
   * @return
   */
  public static String translateNum09(int num){
    String res = "";
    switch (num) {
    case 0:res = "zero";break;
    case 1:res = "one";break;
    case 2:res = "two";break;
    case 3:res = "three";break;
    case 4:res = "four";break;
    case 5:res = "five";break;
    case 6:res = "six";break;
    case 7:res = "seven";break;
    case 8:res = "eight";break;
    case 9:res = "nine";break;
    default:
      res = "";
    }
    return res;
  }
  /**
   * 把卡號翻譯成英文單詞。
   * 參數是已傳數字,不能有任何其他字符
   * @param number
   * @return
   */
  public static String translateCardNumber(String number){
    if(number==null||number.trim().equals("")){
      return "";
    }
    String res = "";
    String numstr=number.trim();
    char[] numArr=numstr.toCharArray();
    for(int i=0;i<numArr.length;i++){
      char ai=numArr[i];
      String ain=Character.toString(ai);
      int bi=Integer.valueOf(ain);
//     System.out.println(translateNum09(bi));
      res+=" "+translateNum09(bi);
    }
    return res;
  }
  ////////////////////////////////////////下面是英文數字的讀法,應用場景:錢/////////////////////////////
  /**
   * 參數是數字,可以帶最多2位小數,最大支持到億億,即15位數字(小數點前面15位)。
   * 例如:123456789123456.78
   *
   * 英文數字按3位讀,單位都是3位一個單位,所以按3位先分好組,再翻譯成單詞。
   * 例如:123,456,789,123,456.78
   * 讀作:
   * one hundred and twenty three trillion,
   * four hundred and fifty six billion,
   * seven hundred and sixty nine million,
   * one hundred and twenty three thousand,
   * four hundred and fifty six
   * point seven eight
   *
   */
  public static String translateMoney(String money){
    if(money==null||money.trim().equals("")){
      return "";
    }
    String res = "";
    String moneyStr=money.trim();
    String moneyStr1="";
    String moneyStr2="";
    if(moneyStr.indexOf(".")!=-1){//有小數點
      moneyStr1=moneyStr.substring(0, (moneyStr.indexOf(".")));
      moneyStr2=moneyStr.substring(moneyStr.indexOf(".")+1);
    }else{
      moneyStr1=moneyStr;
      moneyStr2="";
    }
    String trans1=translateMoney1(moneyStr1);
    String trans2=translateMoney2(moneyStr2);
    if(trans1.trim().equals("")){
      res="zero point "+trans2;
    }else{
      res=trans1+" point "+trans2;
    }
    return res;
  }
  /**
   * //這個是翻譯數字的整數部分,這才是關鍵
   *
   * 參數是數字,可以帶最多2位小數,最大支持到億億,即15位數字(小數點前面15位)。
   * 例如:123456789123456.78
   *
   * 英文數字按3位讀,單位都是3位一個單位,所以按3位先分好組,再翻譯成單詞。
   * 例如:123,456,789,123,456.78
   * 讀作:
   * one hundred and twenty three trillion,
   * four hundred and fifty six billion,
   * seven hundred and sixty nine million,
   * one hundred and twenty three thousand,
   * four hundred and fifty six
   * point seven eight
   *
   */
  public static String translateMoney1(String moneyStr1){
    if(moneyStr1==null||moneyStr1.trim().equals("")||moneyStr1.length()>15){
      return "";
    }
    String res = "";
    String moneyStr=moneyStr1.trim();
    String[] moneyArr=getThreeArr(moneyStr);
    if(moneyArr[0]!=null&&!moneyArr[0].trim().equals("")){
      res+=translateNum9999NoZero(moneyArr[0].trim())+" trillion, ";
    }
    if(moneyArr[1]!=null&&!moneyArr[1].trim().equals("")){
      res+=translateNum9999NoZero(moneyArr[1].trim())+" billion, ";
    }
    if(moneyArr[2]!=null&&!moneyArr[2].trim().equals("")){
      res+=translateNum9999NoZero(moneyArr[2].trim())+" million, ";
    }
    if(moneyArr[3]!=null&&!moneyArr[3].trim().equals("")){
      res+=translateNum9999NoZero(moneyArr[3].trim())+" thousand, ";
    }
    if(moneyArr[4]!=null&&!moneyArr[4].trim().equals("")){
      res+=translateNum9999NoZero(moneyArr[4].trim())+" ";
    }
    return res;
  }
  //翻譯小數點后面的數字,其實就是按位直接翻譯單個數字即可。
  public static String translateMoney2(String moneyStr2){
    return translateCardNumber(moneyStr2);
  }
  /**
   *
例如
12345678
要得到
12 345 678
=============
算法如下:
先反序
87654321
從前往后3位截取
876 543 21
每個再反序
678 345 12
這個數組要反序,這就是要的結果
12 345 678
   * @param number
   * @return
   */
  public static String[] getThreeArr(String number){
    if(number==null||number.trim().equals("")){
      return null;
    }
    String[] res= new String [5];
    BigDecimal dd=new BigDecimal("0");
    BigDecimal bd1000=new BigDecimal("1000");
//   dd.divideAndRemainder(divisor)
    try{
      dd=new BigDecimal(number.trim());//123,456,789,222,555
      BigDecimal dd30=dd.divideAndRemainder(bd1000)[1];//3wei,555(0是整數,1是余數)
      BigDecimal dd2=dd.divideAndRemainder(bd1000)[0];//123,456,789,222
      BigDecimal dd64=dd2.divideAndRemainder(bd1000)[1];//thousand,222
      BigDecimal dd3=dd2.divideAndRemainder(bd1000)[0];//123,456,789(0是整數,1是余數)
      BigDecimal dd97=dd3.divideAndRemainder(bd1000)[1];//million,789
      BigDecimal dd4=dd3.divideAndRemainder(bd1000)[0];////123,456
      BigDecimal dd1210=dd4.divideAndRemainder(bd1000)[1];//billion,456
      BigDecimal dd5=dd4.divideAndRemainder(bd1000)[0];////123
      BigDecimal dd1513=dd5.divideAndRemainder(bd1000)[1];//trillion,123
      res[0]=dd1513.toString();
      res[1]=dd1210.toString();
      res[2]=dd97.toString();
      res[3]=dd64.toString();
      res[4]=dd30.toString();
      for(int i=0;i<res.length;i++){
        String nn=res[i];
        if(nn.trim().equals("0")){
          res[i]="";
        }
      }
    }catch(Exception e){
      return null;
    }
//   System.out.println("getThreeArr=="+Arrays.toString(res));
    return res;
  }
  //講一個字符串反序
  public static String reverseStr(String str){
    if(str==null||str.trim().equals("")){
      return "";
    }
    String strre="";
    String str2=str.trim();
    for(int i=str2.length()-1;i>=0;i--){
      strre+=String.valueOf(str2.charAt(i));//反序后
    }
    return strre;
  }
  /////////////////////////////翻譯百分比,例如12.12%///////////////////////////////////////
  /**
   * 翻譯百分比,后面必須帶有%
   *
   */
  public static String translatePercent(String percentNum){
    if(percentNum==null||percentNum.trim().equals("")||!(percentNum.trim().endsWith("%"))){
      return "";
    }
    String res = "";
    String percent=percentNum.trim().substring(0, percentNum.indexOf("%"));
    String percent1="";
    String percent2="";
    if(percent.indexOf(".")!=-1){//有小數點
      percent1=percent.trim().substring(0, percent.indexOf("."));
      percent2=percent.trim().substring(percent.indexOf(".")+1);
    }else{
      percent1=percent;
      percent2="";
    }
    double nu=Double.valueOf(percent);
    if(nu==0){
      res="zero point zero zero percent";
    }else{
      double nu2=Double.valueOf(percent1);
      if(nu2==0){
        res+=" zero ";
      }
      res+=translateNum9999NoZero(percent1)+" point "+translateCardNumber(percent2)+" percent ";
    }
    return res;
  }
}

運行結果:

Java實現將數字日期翻譯成英文單詞的工具類實例

希望本文所述對大家java程序設計有所幫助。

原文鏈接:http://blog.csdn.net/lushuaiyin/article/details/46300193

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 成人爱情偷拍视频在线观看 | 亚洲最大av网站 | 日韩午夜一区二区三区 | 一区二区三区国产视频 | 大片毛片 | 欧美日韩在线免费观看 | 一级黄色播放 | 全黄性性激高免费视频 | 欧美一区高清 | 精品国产一区二区三区天美传媒 | 永久免费黄色大片 | 免费a级片在线观看 | 中国一级免费视频 | av在线直播观看 | 久久久久久久久久久久免费 | 99精品视频在线观看免费 | 欧美aaaaa一级毛片在线 | 国产精品久久久久久久亚洲按摩 | 性爱视频免费 | 久久久国产精品成人免费 | 男人久久天堂 | 久草在线观看福利 | 老女人碰碰在线碰碰视频 | 有色视频在线观看 | 在线成人免费视频 | 一本在线高清码电影 | 亚洲视频在线观看免费视频 | 国产日本在线 | 性 毛片| 亚洲特黄 | 欧美日韩在线播放一区 | 亚洲一区二区免费视频 | 久久99精品久久久久久秒播放器 | 欧美性生活区 | 国产精品一区二区三区在线 | 免费观看一区二区三区视频 | 羞羞视频在线免费 | 欧美淫视频 | 国产高潮失禁喷水爽到抽搐视频 | 毛片成人网 | 国产精品性夜天天视频 |