FinTS or HBCI Library for Java

I want to write my own little Java e-banking application. Basically I want to connect to my personal bank account, upload my latest bank transfers and save them in my own database. Therefore, I can somehow evaluate and display my own transactions, etc.

I know there is a lot of standard software that probably does exactly what I want to do. But I want to encode it myself! :) And in Java.

So my question is: is there a free, safe, and useful Java API that includes HBCI or FinTS standards? I found it for .NET only and was not free.

Any suggestions? Thanks in advance!

+6
source share
3 answers

Take a look at hbci4java . This is an open source implementation of HBCI.

+5
source

The library marked by @Cengiz has not been updated in recent years.

But on github there is a more relevant fork hbci4java.

https://github.com/willuhn/hbci4java

+3
source

I think you're looking for an implementation: http://www.ofx.net/ , in this case: http://ofx4j.sourceforge.net/ seems to be the only player.

+1
source

Source: https://habr.com/ru/post/922245/


All Articles