如何将数据集合输出为html语言?
data _null_;
set Tmp1.Cargorev end = lastobs;
file 'C:\Cargorev.html';
10 data _null_;
11 set Tmp1.Cargorev end = lastobs;
12 file 'C:\Cargorev.html';
NOTE: The file 'C:\Cargorev.html' is:
File Name=C:\Cargorev.html,
RECFM=V,LRECL=256
NOTE: 0 records were written to the file 'C:\Cargorev.html'.
NOTE: There were 236 observations read from the data set TMP1.CARGOREV.
NOTE: DATA statement used:
real time 7:39.28
cpu time 0.00 seconds
13 data _null_;
14 set Tmp1.Cargorev end = lastobs;
15 file 'C:\Cargorev.html';
为什么读不了呀?