6

我的 ABAP 开发人员正在通过一个函数向我发送文件。我试图找出是否可以在 ABAP> 中将文件转换为字节数组。

如果这是可能的,有没有人有任何示例代码?

4

2 回答 2

7

像这样的东西应该工作:

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
于 2011-03-31T18:55:45.623 回答
0

有几种方法可以做到这一点,但我发现使用 Objects 是最简单的。

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在这里写了一些很棒的文档。

于 2013-08-14T21:07:14.843 回答