Type Method 型メソッド

stringWithContentsOfURL:encoding:error:

Returns a string created by reading data from a given URL interpreted using a given encoding. 与えられたURLからデータを読み出すことによって作成される文字列を返します、与えられた符号化を使って解釈されます。

Declaration 宣言

+ (instancetype)stringWithContentsOfURL:(NSURL *)url 
                               encoding:(NSStringEncoding)enc 
                                  error:(NSError * _Nullable *)error;

Parameters パラメータ

url

The URL to read. このURLを読み出します。

enc

The encoding of the data at url. For possible values, see NSStringEncoding. urlでのデータの符号化。可能な値として、NSStringEncodingを見てください。

error

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

Return Value 戻り値

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

See Also 参照

Creating and Initializing a String from an URL 文字列をURLから作成して初期化する