Initializer
init(contentsOfFile:encoding:)
Returns an NSString
object initialized by reading data from the file at a given path using a given encoding.
NSString
オブジェクトを返します、データをある与えられたパスでのファイルからある与えられた符号化を使って読み出すことによって初期化されます。
Declaration
宣言
convenience init(contentsOfFile path: String
,
encoding enc: UInt
) throws
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 return 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 the file named by path
using the encoding, enc
. The returned object may be different from the original receiver. If the file can’t be opened or there is an encoding error, returns nil
.
あるNSString
オブジェクト、初期化をpath
によって指名されるファイルから符号化enc
を使ってデータを読み出すことによって行います。返されるオブジェクトは、元のレシーバと異なるかもしれません。ファイルが開かれることができないまたは符号化エラーがあるならば、nil
を返します。
See Also
参照
Creating and Initializing a String from a File
文字列をファイルから作成して初期化する
Related Documentation
関連文書
+ stringWithContentsOfFile:encoding:error:
Returns a string created by reading data from the file at a given path interpreted using a given encoding.
与えられたパスでのファイルからデータを読み出すことによって作成される文字列を返します、与えられた符号化を使って解釈されます。