gpt4 book ai didi

java - 编写一个简单的 ofx4j 程序

转载 作者:行者123 更新时间:2023-12-02 05:13:33 25 4
gpt4 key购买 nike

我一直在使用http://ofx4j.sourceforge.net/userguide.html作为编写小型 Java 程序以从富国银行下载我的银行帐户对帐单的指南。我不断收到一条错误消息,提示无效登录。我有正确的网址。我使用的密码和用户名与登录他们的网页时使用的相同。有没有人有我可以查看或使用的任何其他简单示例?

最佳答案

我遇到了同样的问题。我试图登录大通银行,但收到​​无效登录。我遇到的问题是我使用了错误的数据,oxf4j 可能有过时的数据为它存储的银行存储。转到 gnucash 为您的银行获取正确的更新设置: http://wiki.gnucash.org/wiki/OFX_Direct_Connect_Bank_Settings .然后你需要创建一个新的 BaseFinancialInstitutionData 对象像这样(此示例适用于大通信用卡):

BaseFinancialInstitutionData data =  new BaseFinancialInstitutionData();
data.setFinancialInstitutionId("10898");
data.setOFXURL(new URL("https://ofx.chase.com"));
data.setOrganization("B1");
FinancialInstitutionService service = new FinancialInstitutionServiceImpl();
FinancialInstitution fi = service.getFinancialInstitution(data);

关于java - 编写一个简单的 ofx4j 程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3176551/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com