Axapta:从容器字段加载和保存文件
我需要自定义 AX 来加载任意大小的任意文件并将其作为容器字段保存到数据库中。我还需要从该容器字段读回并将内容写入文件中,该文件应包含与加载之前完全相同的文件内容。
我尝试过 BinaryIO,不幸的是没有运气
I need to customize AX to load an arbitrary file with arbitrary size and save it to database as a container field. I also need to read back from that container field and write the content into a file, which should contain exactly the same file content as before load.
I had tried with BinaryIO, unfortunately with no luck
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此问题的答案适用。
特别是您应该使用系统类
BinData
以及方法loadFile
和saveFile
。
示例:此作业将
notepad
程序复制到临时目录。The answer to this question applies.
Especially you should use the system class
BinData
and the methodsloadFile
andsaveFile
.
Example: this job copies the
notepad
program to a temporary directory.