使用 Salesforce Apex 代码在我的计算机上创建 csv 文件的 blob 表示形式

发布于 2024-12-28 10:18:08 字数 287 浏览 0 评论 0原文

谁能告诉我如何使用 Apex 代码在我的计算机上创建 csv 文件的 blob 表示形式?我正在尝试使用 Apex 自定义类以编程方式上传 csv 文件。我正在使用由产品 AWS s3 安装的自定义类,该产品已安装在 SalesForce 上。我正在调用 AWS_S3_ExampleController.cls 中的函数syncFilesystemDoc。为了正确使用它,我需要填充 fileblob,这就是我陷入困境的地方。

[编辑] 此代码没有 UI。我不是在寻找

Sameer相关的 UI 解决方案

Can anyone tell me how to create a blob representation of csv file on my machine using Apex code? I am trying to upload a csv file programmatically using Apex custom class. I am using custom classes installed by product AWS s3 which i have installed on SalesForce. I am calling the function syncFilesystemDoc in AWS_S3_ExampleController.cls. To use this correctly i need to populate fileblob, which is where i am stuck.

[Edit] This code dos not have a UI. I am not looking for a UI related solution

regards

Sameer

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

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

发布评论

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

评论(2

烟花肆意 2025-01-04 10:18:08

Blob 只是一个二进制大型对象,它只是二进制数据。我不知道您使用的是什么语言,但您只需将整个文件加载到内存中并将其放入适当的参数中即可。

你正在开发什么? Apex 仅在force.com 平台上运行,因此您无法在计算机上本地使用它。

A blob is just a Binary Large OBject, it's just the binary data. I don't know what language you're using but you just need to load the entire file into memory and put it in the appropriate parameter.

What are you developing in? Apex only runs on the force.com platform, so you can't use that locally on your machine.

欢你一世 2025-01-04 10:18:08

根据 salesforce 文档,Blob 数据类型有一个 valueof() ,它将从字符串转换为 Blob

请参阅 http://www.salesforce.com/us/developer/docs/apexcode/Content/langCon_apex_primitives.htmhttp://www.salesforce.com/us/developer/docs/apexcode /Content/apex_methods_system_blob.htm

所以

String csvFile = 'field1,field2,field3\n';
csvFile += '1value1,1value2,1value3\n';
csvFile += '2value1,2value2,2value3';
Blob csvBlob = Blob.valueOf(csvFile);

应该可以解决问题。

According the the salesforce documents, the Blob data type has a valueof() that will convert from a string to Blob

See http://www.salesforce.com/us/developer/docs/apexcode/Content/langCon_apex_primitives.htm or http://www.salesforce.com/us/developer/docs/apexcode/Content/apex_methods_system_blob.htm

so

String csvFile = 'field1,field2,field3\n';
csvFile += '1value1,1value2,1value3\n';
csvFile += '2value1,2value2,2value3';
Blob csvBlob = Blob.valueOf(csvFile);

Should do the trick.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文