fscanf_s, _fscanf_s_l, fwscanf_s, _fwscanf_s_l
从流读取设置数据格式。 这些是 fscanf, _fscanf_l, fwscanf, _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_s 和 fwscanf_s的 EOF 。
这些功能验证其参数。 如果流是伊恩 nvalid 文件指针,或者 format 是 null 指针,这些函数调用的参数无效处理程序,如 参数验证所述。 如果执行允许继续,这些函数返回 EOF 并将 errno 到 EINVAL。
备注
fscanf_s 函数读取 stream 的当前位置的数据。 argument 出自的位置 (如果有)。 每 argument 必须是指向对应于 format的类型说明符类型的变量。 format 控件输入字段的说明和具有窗体和功能和 scanf_s的 format 参数相同;为 format的声明参见 格式规范字段 – scanf 功能和 wscanf 功能*。*fwscanf_s 是 fscanf_s的宽字符版本;为fwscanf_s 的 format 参数是宽字符字符串。 ,如果流在 ANSI 模式下,中打开这些函数具有相同的行为。 fscanf_s 当前不支持从 UNICODE 流的输入。
安全函数 (与 _s后缀) 和更早的功能之间的主要差异在于安全功能需要在每 c、 C、 s、 S和 [ 类型为变量后的参数将字段字符范围。 有关更多信息,请参见scanf_s, _scanf_s_l, wscanf_s, _wscanf_s_l和 scanf宽度规范。
备注
大小参数是类型 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 );
}
}
.NET Framework 等效项
系统:: IO:: StreamReader:: ReadLine。请参见 Parse 方法,如 系统:: 二进制文件:: 分析。
请参见
参考
_cscanf_s, _cscanf_s_l, _cwscanf_s, _cwscanf_s_l
fprintf_s, _fprintf_s_l, fwprintf_s, _fwprintf_s_l
scanf_s, _scanf_s_l, wscanf_s, _wscanf_s_l