使用 Salesforce Apex 代码在我的计算机上创建 csv 文件的 blob 表示形式
谁能告诉我如何使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
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.
根据 salesforce 文档,Blob 数据类型有一个 valueof() ,它将从字符串转换为 Blob
请参阅 http://www.salesforce.com/us/developer/docs/apexcode/Content/langCon_apex_primitives.htm 或 http://www.salesforce.com/us/developer/docs/apexcode /Content/apex_methods_system_blob.htm
所以
应该可以解决问题。
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
Should do the trick.