需要将数据导入Quickbooks

问题描述:

我正在寻找一种现有的Java(或JVM'able语言)库,它将创建IIF文件以导入Quickbooks。免费或商业。有人知道吗?

I'm looking for an existing Java (or JVM'able language) library that will create IIF files for import into Quickbooks. Free or Commercial. Anyone know of something?

更新:

在阅读了这个问题的评论之后,我查看了IPP和Intuit提供的SDK选项,他们不能让这更难。所以这就是我需要做的。我需要从我的数据库中获取数据并将其导出为某种格式,然后我可以将其导入Quickbooks。这甚至不需要是一个自动过程,因为Quickbooks应用程序/数据库不会在运行Web应用程序的服务器(linux)上运行。

After reading a comment on this question, I looked at the IPP and SDK options that Intuit provides and they could not have made this more difficult. So here is what I need to do. I need to take data from my database and export it into some sort of format that I can then import into Quickbooks. This doesn't really even need to be an automatic process as the Quickbooks application/database won't be on the server (linux) that the web applications runs on.

如果你喜欢滚动自己(或使用Intuit测试应用程序),还有很多免费选项。

There are a number of free options as well if you're comfy rolling your own (or using Intuit test apps).

如果您下载 QuickBooks SDK ,它包括发送QuickBooks XML文档的示例,这些文档指示QuickBooks添加客户,添加事务等等。示例可以轻松扩展,以允许您复制/粘贴XML从磁盘记录或加载XML文档。

If you download the QuickBooks SDK, it includes examples of sending QuickBooks XML documents which instruct QuickBooks to add customers, add transactions, etc. etc. etc. The examples could easily be extended to allow you to copy/paste in an XML document or load an XML document from disk.

然后,您可以使用Java构建实际的XML文件。如果您想要真正的想象,请使用 JAXB (或等效的XSD到类生成器)从包含的.XSD文档生成Java类,并且能够执行以下操作:InvoiceAdd inv = new InvoiceAdd();

You could then build the actual XML files in Java. If you wanted to get really fancy, use JAXB (or an equivalent XSD to Class generator) to generate Java classes from the included .XSD documents, and be able to do things like: InvoiceAdd inv = new InvoiceAdd();

有文档关于QuickBooks SDK中包含的XML格式。您还可以在我们的 QuickBooks XML示例: //wiki.consolibyte.com/wiki/doku.php/quickbooks_example_qbxml\"rel =noreferrer> QuickBooks集成维基。

There's documentation about the XML format included in the QuickBooks SDK. You can also find some QuickBooks XML examples on our QuickBooks integration wiki.