All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.kapott.hbci.tools.CheckAccountCRC Maven / Gradle / Ivy

Go to download

HBCI4j - Home Banking Computer Interface for Java - Clone from https://github.com/hbci4j/hbci4java

There is a newer version: 3.5.46
Show newest version
/*  $Id: CheckAccountCRC.java,v 1.1 2011/05/04 22:37:45 willuhn Exp $

    This file is part of HBCI4Java
    Copyright (C) 2001-2008  Stefan Palme

    HBCI4Java is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    HBCI4Java is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*/

package org.kapott.hbci.tools;

import org.kapott.hbci.manager.BankInfo;
import org.kapott.hbci.manager.HBCIUtils;

// TODO: doku anpassen

/**
 * 

Tool zum Verifizieren der Gültigkeit von BLZ/Kontonummer. * Alle Kontonummern in Deutschland enthalten eine Prüfziffer, anhand * welcher überprüft werden kann, ob die Kontonummer an sich gültig ist. * Mit diesem Tool kann für eine gegebene Bankleitzahl und Kontonummer * deren Gültigkeit überprüft werden.

*

In HBCI4Java sind noch nicht alle von den Banken verwendeten * Prüfzifferverfahren implementiert. Deshalb können bis jetzt nur * die Kontonummern von einigen bestimmten Banken überprüft werden. Anhand * der Ausgabe des Programmes ist ersichtlich, ob HBCI4Java tatsächlich * die Kontonummer überprüfen konnte und wenn ja, ob die Prüfung erfolgreich * verlaufen ist oder nicht.

*

Der Aufruf erfolgt mit * java -cp ... org.kapott.hbci.tools.CheckAccountCRC <blz> <kontonummer> * */ public class CheckAccountCRC { public static void main(String[] args) { if (args.length < 1 || args.length > 2) { System.out.println("usage:"); System.out.println(" CheckAccountCRC "); System.out.println(" CheckAccountCRC "); System.exit(1); } if (args.length == 2) { String blz = args[0]; String number = args[1]; BankInfo info = HBCIUtils.getBankInfo(blz); String kiname = info != null ? info.getName() : null; String alg = info != null ? info.getChecksumMethod() : null; if (kiname.length() != 0) { System.out.println("institute name: " + (kiname != null ? kiname : "")); System.out.println("algorithmus: " + (alg != null ? alg : "")); System.out.println("blz: " + blz); System.out.println("account number: " + number); System.out.println(HBCIUtils.checkAccountCRC(blz, number) ? "OK" : "not OK"); } else { System.out.println("no information about " + blz + " in database"); } } else { String iban = args[0]; System.out.println("IBAN: " + iban); System.out.println(HBCIUtils.checkIBANCRC(iban) ? "OK" : "not OK"); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy