init(contentsOfFile : String, encoding: UInt)
NSString
object initialized by reading data from the file at a given path using a given encoding.
NSString
オブジェクトを返します、データをある与えられたパスでのファイルからある与えられた符号化を使って読み出すことによって初期化されます。
NSString
object initialized by reading data from the file at a given path and returns by reference the encoding used to interpret the characters.
NSString
オブジェクトを返します、データをある与えられたパスでのファイルから読み出すことによって初期化されます、そして参照によって文字を解釈するのに使った符号化を返します。
Availability 有効性
Technology
convenience init(contentsOfFile path: String
,
usedEncoding enc: UnsafeMutablePointer
<UInt
>?) throws
path
A path to a file. ファイルへのパス。
enc
Upon return, if the file is read successfully, contains the encoding used to interpret the file at path
. For possible values, see NSString
.
戻りでは、ファイルがうまく読み出されたならば、path
でのファイルを解釈するのに使われた符号化を含みます。可能な値として、NSString
を見てください。
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
を渡してください。
An NSString
object initialized by reading data from the file named by path
. 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
によって指名されるファイルからデータを読み出すことによって初期化されます。返されるオブジェクトは、元のレシーバと異なるかもしれません。ファイルが開かれることができないまたは符号化エラーがあるならば、nil
を返します。
Handling Errors in Swift: Swiftでのエラー処理:
In Swift, this method returns a nonoptional result and is marked with the throws
keyword to indicate that it throws an error in cases of failure.
Swiftでは、このメソッドは非オプショナルの結果を返します、そしてthrows
キーワードで印されて失敗の場合にそれがエラーをスローすることを指し示します。
You call this method in a try
expression and handle any errors in the catch
clauses of a do
statement, as described in Error Handling in The Swift Programming Language and About Imported Cocoa Error Parameters.
あなたはこのメソッドをtry
式の中で呼び出して、あらゆるエラーをdo
文のcatch
節で取り扱います、The Swift Programming Languageのエラー処理そしてインポートされるCocoaエラーパラメータについてで記述されるように。
init(contentsOfFile : String, encoding: UInt)
NSString
object initialized by reading data from the file at a given path using a given encoding.
NSString
オブジェクトを返します、データをある与えられたパスでのファイルからある与えられた符号化を使って読み出すことによって初期化されます。
+ stringWithContentsOfFile:encoding:error: