简体   繁体   English

验证信用卡详细信息

[英]Validate credit card details

How do I validate a credit card.如何验证信用卡。 I need to do luhn check.我需要做luhn检查。 Is there an api in blackberry to do it?黑莓中是否有 api 来做到这一点?

You can use the following method to validate a credit card number您可以使用以下方法验证信用卡号

// -------------------
// Perform Luhn check
// -------------------

public static boolean isCreditCardValid(String cardNumber) {
    String digitsOnly = getDigitsOnly(cardNumber);
    int sum = 0;
    int digit = 0;
    int addend = 0;
    boolean timesTwo = false;

    for (int i = digitsOnly.length() - 1; i >= 0; i--) {
        digit = Integer.parseInt(digitsOnly.substring(i, i + 1));
        if (timesTwo) {
            addend = digit * 2;
            if (addend > 9) {
                addend -= 9;
            }
        } else {
            addend = digit;
        }
        sum += addend;
        timesTwo = !timesTwo;
    }

    int modulus = sum % 10;
    return modulus == 0;

}
using System; 

class GFG { 

// Returns true if given 
// card number is valid 
static bool checkLuhn(String cardNo) 
{ 
    int nDigits = cardNo.Length; 
    int nSum = 0; 
    bool isSecond = false; 
    for (int i = nDigits - 1; i >= 0; i--) 
    { 
        int d = cardNo[i] - '0'; 
        if (isSecond == true) 
            d = d * 2; 

        // We add two digits to handle 
        // cases that make two digits 
        // after doubling 
        nSum += d / 10; 
        nSum += d % 10; 
        isSecond = !isSecond; 
    } 
    return (nSum % 10 == 0); 
} 

    static public void Main() 
    { 
        String cardNo = "79927398713"; 
        if (checkLuhn(cardNo)) 
            Console.WriteLine("This is a valid card"); 
        else
            Console.WriteLine("This is not a valid card"); 

    } 
} 

OUT PUT :-输出 :-

This is a valid card这是一张有效的卡

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM