Abap - 从文件中创建一个字节数组

时间:2011-03-31 17:02:19

标签: sap abap

我希望我的ABAP开发人员能够通过函数向我发送文件。我试图找出你是否可以在abap中将文件转换为字节数组。如果可以,有没有人有任何示例代码?

2 个答案:

答案 0 :(得分:6)

这样的事情应该有效:

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

答案 1 :(得分:0)

有一些方法可以做到这一点,但我发现使用对象是最简单的。

DATA byte_array TYPE TABLE OF raw256. "any type will work here
DATA my_file    TYPE string VALUE `C:\users\bob\file.bin`. "Absolute or relative works

CL_GUI_FRONTEND_SERVICES=>GUI_UPLOAD(
  EXPORTING
    filename = my_file
    filetype = 'BIN'
  CHANGING
    data_tab = byte_array ).

根据我的经验,这门课非常强大。有一堆可选参数和返回码。 SAP写了一些很棒的文档here