使用Coldfusion解析OFX(开放财务交换文档)

时间:2019-01-01 10:52:29

标签: coldfusion ofx

我搜索了很长时间,以找到Coldfusion解析OFX文件的示例,但找不到任何内容。谁能帮忙提供一些示例代码或为我指明正确的方向?

2 个答案:

答案 0 :(得分:2)

可以尝试使用开源OFX4J Java库。

答案 1 :(得分:-1)

我已经建立了一个库,可以解析出.docx之类的ZIP XML文件。您可能想尝试一下。

首先查看您是否可以解压缩并读取文件

string function extractDocx(required string pathToDocX) {

  cfzip(action="read", file=arguments.pathToDocx, entrypath="word\document.xml", variable="this.xmlString");

  this.xmlPara = xmlparse(this.xmlString).document.body;


  return ReadNode(this.xmlPara);
  }

然后,结果需要进入递归解析器。参见:

https://coldfusion.adobe.com/2018/11/extracting-text-html-out-word-docx-files/ https://github.com/jmohler1970/WordExtractor_demo https://github.com/jmohler1970/WordExtractor