Instance Method
インスタンスメソッド
initWithContentsOfURL:encoding:error:
Returns an NSString
object initialized by reading data from a given URL interpreted using a given encoding.
NSString
オブジェクトを返します、データをある与えられたURLから読み出すことによって初期化します、与えられた符号化を使って解釈します。
Parameters
パラメータ
url
The URL to read.
このURLを読み出します。
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
戻り値
An NSString
object initialized by reading data from url
. The returned object may be different from the original receiver. If the URL can’t be opened or there is an encoding error, returns nil
.
あるNSString
オブジェクトで、url
からデータを読み出すことによって初期化されます。返されるオブジェクトは、元のレシーバと異なるかもしれません。URLが開かれることができないまたは符号化エラーがあるならば、nil
を返します。
See Also
参照
Creating and Initializing a String from an URL
文字列をURLから作成して初期化する
+ 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からデータを読み出すことによって作成される文字列を返します、そしてデータを解釈するのに使われた符号化を参照渡しで返します。
- initWithContentsOfURL:usedEncoding:error:
Returns an NSString
object initialized by reading data from a given URL and returns by reference the encoding used to interpret the data.
NSString
オブジェクトを返します、データをある与えられたURLから読み出すことによって初期化されます、そして参照によってデータを解釈するのに使った符号化を返します。