以编程方式访问位于 salesforce 上的 excel 文件

发布于 2024-12-12 19:01:11 字数 260 浏览 3 评论 0原文

我是 salesforce 平台的新手。我正在处理的任务涉及 salesforce 上的一些 excel 文件。我必须编写一个程序来分析这些 excel 文件中的数据并生成报告。关于执行此操作,我有以下问题

  1. 我需要以编程方式将这些 excel 文件本地下载到我的计算机吗?如果是的话,我应该使用什么API呢?如果能提供一个示例,我们将不胜感激。

  2. 这可以直接在 salesforce 上完成吗?

谢谢。

I am new to the salesforce platform.The task im working on involves some excel files on salesforce. I have to write a program to analyze the data in these excel files and generate a report.I have the following questions about doing this

  1. Do i need to programmatically download these excel files locally to my machine ?. If yes, what api should i use for this ?. An example would be really appreciated.

  2. Is this something that can be done directly on salesforce ?

Thank You.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

这样的小城市 2024-12-19 19:01:11
  1. 你有多种选择,如果你使用.NET或Java,你可能想从soap API开始,你可以运行SOQL查询来访问文档对象的Body字段(我假设您将这些存储在文档中)。 SOAP API 文档 有这方面的示例。对于其他语言,您可能希望从 REST API 开始,您将能够访问文档的正文资源并取回二进制流,同样,docs

  2. 没有。

  1. You have a mutltitude of choices, If you're using .NET or Java, you probably want to start with the soap API, you can run a SOQL query to access the Body field of the document object (I'm assuming you're storing these in documents). The SOAP API docs have examples for this. For other languages you'll probably want to start with the REST API, you'll be able to access the body resource of your document and get back the binary stream, again, good examples in the docs.

  2. No.

三寸金莲 2024-12-19 19:01:11
  1. 虽然您无法打开 Excel 文档来在 Apex 中检查/修改它(据我所知),但您可以 创建一个 - 仅供参考
  1. Although you can't open an Excel document to inspect it/modify it in Apex (to the best of my knowledge), you can create one - FYI
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文