Type Method 型メソッド

stringWithContentsOfFile:encoding:error:

Returns a string created by reading data from the file at a given path interpreted using a given encoding. 与えられたパスでのファイルからデータを読み出すことによって作成される文字列を返します、与えられた符号化を使って解釈されます。

Declaration 宣言

+ (instancetype)stringWithContentsOfFile:(NSString *)path 
                                encoding:(NSStringEncoding)enc 
                                   error:(NSError * _Nullable *)error;

Parameters パラメータ

path

A path to a file. ファイルへのパス。

enc

The encoding of the file at path. For possible values, see NSStringEncoding. pathでのファイルのその符号化。可能な値として、NSStringEncodingを見てください。

error

If an error occurs, upon returns contains an NSError object that describes the problem. If you are not interested in possible errors, pass in NULL. エラーが発生するならば、戻りでは問題を記述するNSErrorオブジェクトを含みます。あなたが起こりうるエラーに興味がないならば、NULLを渡してください。

Return Value 戻り値

A string created by reading data from the file named by path using the encoding, enc. If the file can’t be opened or there is an encoding error, returns nil. データをpathによって指名されるファイルから、符号化encを使って読み出すことによって作成される文字列。ファイルが開かれることができないまたは符号化エラーがあるならば、nilを返します。

See Also 参照

Creating and Initializing a String from a File 文字列をファイルから作成して初期化する