Type Method 型メソッド

stringWithContentsOfURL:usedEncoding:error:

Returns a string created by reading data from a given URL and returns by reference the encoding used to interpret the data. 与えられたURLからデータを読み出すことによって作成される文字列を返します、そしてデータを解釈するのに使われた符号化を参照渡しで返します。

Declaration 宣言

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

Parameters パラメータ

url

The URL from which to read data. それからデータを読み出すことになるURL。

enc

Upon return, if url is read successfully, contains the encoding used to interpret the data. 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. If the URL can’t be opened or there is an encoding error, returns nil. データをurlから読み出すことによって作成される文字列。URLが開かれることができないまたは符号化エラーがあるならば、nilを返します。

Discussion 議論

This method attempts to determine the encoding at url. このメソッドは、urlでの符号化を決定しようと試みます。

See Also 参照

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