RFC Fácil

Librería para calcular el Registro Federal de Contribuyentes en México (RFC) - Java.

View the Project on GitHub josketres/rfc-facil

Uso

Calcular el rfc de una persona física es muy sencillo:

// Josué Zarzosa de la Torre nacido el 5 de Agosto de 1987
Rfc rfc = new Rfc.Builder()
            .name("Josué")
            .firstLastName("Zarzosa")
            .secondLastName("de la Torre")
            .birthday(5, 8, 1987)
            .build();

// se puede obtener el rfc completo
print(rfc.toString());        // ZATJ 870805 CK6

// se pueden obtener partes del rfc
print(rfc.tenDigitsCode);     // ZATJ 870805
print(rfc.homoclave);         // CK
print(rfc.verificationDigit); // 6

Download

Baja directamente [el JAR de la versión más actual][2] o declara la dependencia vía Maven:

<dependency>
<groupId>com.josketres</groupId>
<artifactId>rfcfacil</artifactId>
<version>2.0.0</version>
</dependency>

o con Gradle:

compile 'com.josketres:rfcfacil:2.0.0'

License

Copyright 2015 Josué Zarzosa de la Torre

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.