fprintf_s、 _fprintf_s_l、 fwprintf_s、 _fwprintf_s_l
列印格式的資料,寫入資料流。 這些是舊版fprintf、 _fprintf_l、 fwprintf、 _fwprintf_l中所述的安全性增強功能與安全性功能,則在 CRT 中。
int fprintf_s(
FILE *stream,
const char *format [,
argument ]...
);
int _fprintf_s_l(
FILE *stream,
const char *format,
locale_t locale [,
argument ]...
);
int fwprintf_s(
FILE *stream,
const wchar_t *format [,
argument ]...
);
int _fwprintf_s_l(
FILE *stream,
const wchar_t *format,
locale_t locale [,
argument ]…
);
參數
stream
指標FILE結構。format
控制項的格式字串。argument
選擇性的引數。locale
若要使用地區設定。
傳回值
fprintf_s傳回寫入的位元組數目。 fwprintf_s傳回寫入的寬字元數目。 每個函式傳回負數值而發生輸出錯誤。
備註
fprintf_s將格式設定,並將列印一系列字元與輸出的數值stream*.* 每個函式argument (如果有的話) 會轉換並輸出傳送至對應的格式規格,以根據format*.* 對於fprintf_s、 format引數具有相同的語法和使用在printf_s。
fwprintf_s寬字元版本的fprintf_s。 在fwprintf_s, format是寬字元字串。 在 ANSI 模式中開啟資料流時,這些函式的行為都相同。 fprintf_s目前不支援輸出成 UNICODE 資料流。
使用這些函式的版本_l尾碼完全相同,不同之處在於它們使用傳遞中而不是目前的地區設定的地區設定參數。
安全性提示 |
---|
請確定format不是使用者定義的字串。 |
想要的不安全的版本 (請參閱fprintf、 _fprintf_l、 fwprintf、 _fwprintf_l),這些函式會驗證它們的參數,並如所述,叫用無效的參數處理常式中, 參數驗證,如果其中一個stream或format是一個 null 指標。 這些函式與不同的不安全的版本格式字串本身也會進行驗證。 如果有任何不明或格式錯誤的格式規範,這些函式會產生不正確的參數的例外狀況。 在所有情況下,若要繼續,請允許執行函數會傳回-1,並設定errno到EINVAL。 請參閱 _doserrno、 errno、 _sys_errlist,以及 _sys_nerr 如需有關這些項目,以及其他] 下,錯誤代碼。
泛用文字常式對應
TCHAR。H 常式 |
_UNICODE & 未定義的 _MBCS |
定義的 _MBCS |
定義 _unicode 之後 |
---|---|---|---|
_ftprintf_s |
fprintf_s |
fprintf_s |
fwprintf_s |
_ftprintf_s_l |
_fprintf_s_l |
_fprintf_s_l |
_fwprintf_s_l |
如需詳細資訊,請參閱格式規格。
需求
Function |
所需的標頭 |
---|---|
fprintf_s, _fprintf_s_l |
<stdio.h> |
fwprintf_s, _fwprintf_s_l |
<stdio.h> 或者 <wchar.h> |
其他的相容性資訊,請參閱相容性在簡介中。
範例
// crt_fprintf_s.c
// This program uses fprintf_s to format various
// data and print it to the file named FPRINTF_S.OUT. It
// then displays FPRINTF_S.OUT on the screen using the system
// function to invoke the operating-system TYPE command.
#include <stdio.h>
#include <process.h>
FILE *stream;
int main( void )
{
int i = 10;
double fp = 1.5;
char s[] = "this is a string";
char c = '\n';
fopen_s( &stream, "fprintf_s.out", "w" );
fprintf_s( stream, "%s%c", s, c );
fprintf_s( stream, "%d\n", i );
fprintf_s( stream, "%f\n", fp );
fclose( stream );
system( "type fprintf_s.out" );
}
.NET Framework 對等用法
System::IO::StreamWriter::Write
請參閱
參考
_cprintf、 _cprintf_l、 _cwprintf、 _cwprintf_l