fscanf_s, _fscanf_s_l, fwscanf_s, _fwscanf_s_l

从流中读取格式化数据。 这些版本的 fscanf_fscanf_lfwscanf_fwscanf_l 具有安全增强功能,如 CRT 中的安全功能中所述。

语法

int fscanf_s(
   FILE *stream,
   const char *format [,
   argument ]...
);
int _fscanf_s_l(
   FILE *stream,
   const char *format,
   _locale_t locale [,
   argument ]...
);
int fwscanf_s(
   FILE *stream,
   const wchar_t *format [,
   argument ]...
);
int _fwscanf_s_l(
   FILE *stream,
   const wchar_t *format,
   _locale_t locale [,
   argument ]...
);

参数

stream
指向 FILE 结构的指针。

format
窗体控件字符串。

argument
可选参数。

locale
要使用的区域设置。

返回值

其中每个函数都将返回成功转换和分配的字段数。 返回值不包括已读取但未分配的字段。 返回值为 0 表示没有分配任何字段。 如果出现错误或在首次转换前达到文件流的结尾,则 fscanf_sfwscanf_s 的返回值为 EOF

这些函数验证其参数。 如果 stream 是无效文件指针,或 format 是空指针,这些函数将调用无效参数处理程序,如参数验证中所述。 如果允许执行继续,则这些函数将返回 EOF 并将 errno 设置为 EINVAL

备注

fscanf_s 函数将从 stream 的当前位置将数据读取到 argument(如果有)指定的位置。 每个 argument 必须为指向类型的变量的指针,该类型与 format 中的类型说明符对应。 format 控制对输入域的解释,其形式和函数与 scanf_sformat 参数相同;有关 format 的说明,请参阅格式规范域:scanfwscanf 函数fwscanf_sfscanf_s 的宽字符版本;fwscanf_s 格式参数是宽字符字符串。 如果在 ANSI 模式下打开流,则这些函数行为相同。 fscanf_s 当前不支持 UNICODE 流的输入。

更安全的函数(带有 _s 后缀)与其他版本之间的主要区别在于,更安全的函数需要每个 cCsS[ 类型字段的以字符为单位的大小作为紧跟变量的参数进行传递。 有关详细信息,请参阅 scanf_s_scanf_s_lwscanf_s_wscanf_s_lscanf宽度规范

注意

大小参数的类型具有 unsigned,而不具有 size_t

这些带有 _l 后缀的函数的版本相同,只不过它们使用传递的区域设置参数而不是当前线程区域设置。

一般文本例程映射

TCHAR.H 例程 _UNICODE_MBCS 未定义 _MBCS 已定义 _UNICODE 已定义
_ftscanf_s fscanf_s fscanf_s fwscanf_s
_ftscanf_s_l _fscanf_s_l _fscanf_s_l _fwscanf_s_l

要求

函数 必需的标头
fscanf_s_fscanf_s_l <stdio.h>
fwscanf_s_fwscanf_s_l <stdio.h><wchar.h>

有关兼容性的详细信息,请参阅 兼容性

示例

// crt_fscanf_s.c
// This program writes formatted
// data to a file. It then uses fscanf to
// read the various data back from the file.

#include <stdio.h>
#include <stdlib.h>

FILE *stream;

int main( void )
{
   long l;
   float fp;
   char s[81];
   char c;

   errno_t err = fopen_s( &stream, "fscanf.out", "w+" );
   if( err )
      printf_s( "The file fscanf.out was not opened\n" );
   else
   {
      fprintf_s( stream, "%s %ld %f%c", "a-string",
               65000, 3.14159, 'x' );
      // Set pointer to beginning of file:
      fseek( stream, 0L, SEEK_SET );

      // Read data back from file:
      fscanf_s( stream, "%s", s, _countof(s) );
      fscanf_s( stream, "%ld", &l );

      fscanf_s( stream, "%f", &fp );
      fscanf_s( stream, "%c", &c, 1 );

      // Output data read:
      printf( "%s\n", s );
      printf( "%ld\n", l );
      printf( "%f\n", fp );
      printf( "%c\n", c );

      fclose( stream );
   }
}
a-string
65000
3.141590
x

另请参阅

流 I/O
_cscanf_s_cscanf_s_l_cwscanf_s_cwscanf_s_l
fprintf_s_fprintf_s_lfwprintf_s_fwprintf_s_l
scanf_s_scanf_s_lwscanf_s_wscanf_s_l
sscanf_s_sscanf_s_lswscanf_s_swscanf_s_l
fscanf_fscanf_lfwscanf_fwscanf_l