4

当我在 aqbanking 中运行以下命令时

aqbanking-cli request -a 0987654321 -c transactions.ctx --transactions --fromdate=20121011

正在创建内容如下所示的文件。它是什么样的格式,我试图找到一个解析它的C库。

从文件transactions.ctx

accountInfoList {
  accountInfo {
    char bankCode="1234567890"
    char bankName="Deutsche Bank"
    char accountNumber="0987654321"
    char accountName="Girokonto"
    char owner="MUELLER, MIKE"
    char currency="EUR"
    int  accountType="0"
    int  accountId="42"

    statusList {
      status {
        int  time="1349956800"

        notedBalance {
          value {
            char value="8799384%2F100"
            char currency="EUR"
          } #value

          int  time="1349956800"
        } #notedBalance
      } #status
    } #statusList
  } #accountInfo
} #accountInfoList
4

1 回答 1

2

它不是标准文件格式。它是 Gwenhywfar 库中的一种文件格式。http://freecode.com/projects/gwenhywfar

从他们在自述文件中的功能列表中,

High-level functions for parsing files with a simplified "XML-like"
format and accessing them like a hierarchical database (src/parser/)
It is able to process valid XML files, too.

您可能会使用 src/parser 文件夹中的 C++ 函数,但文档看起来有点缺乏。

于 2012-10-11T21:29:44.353 回答