将文件转换为 SAP ABAP 中的字节数组


以下是一个代码片段,用于执行相同操作。

data: f_line type xstring.               // to get line by line content
data: f_file type table of xstring.      // to get the final content
data: f_filename type string value 'samplefile.txt'.   // store the filename of file
data: f_len type i.

open dataset f_filename for input in binary mode.   // read the binary
read dataset f_filename into f_line length f_len.  // get the number of lines in the file

while f_len > 0.               // loop through file line by line
   append f_line to f_file.
   read dataset f_filename into f_line length f_len.
endwhile.

close dataset f_filename       // close the dataset

以上代码片段只是众多可能的方法之一。你可以使用相同的方法扩展或衍生功能。

更新于: 05-12-2019

717 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始吧
广告