gpt4 book ai didi

arrays - 从文件创建字节数组?

转载 作者:行者123 更新时间:2023-12-04 18:51:31 24 4
gpt4 key购买 nike

我的 ABAP 开发人员正在通过一个函数向我发送文件。我想知道是否可以在 ABAP> 中将文件转换为字节数组。
如果这是可能的,有人有任何示例代码吗?

最佳答案

这样的事情应该工作:

data: w_line type xstring.
data: t_file type table of xstring.
data: w_filename type string falue 'myfile.txt'.
data: w_len type i.

open dataset w_filename for input in binary mode.

read dataset w_filename into w_line length w_len.

while w_len > 0.
append w_line to t_file.
read dataset w_filename into w_line length w_len.
endwhile.

close dataset w_filename.

* t_file now holds the data in an internal table

关于arrays - 从文件创建字节数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5503518/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com