init?(contentsOfFile : String)
init?(contentsOf : URL)
init(contentsOf : URL, options: NSData.ReadingOptions)
struct NSData.ReadingOptions
init?(contentsOfMappedFile : String)
class func dataWithContentsOfMappedFile (String) -> Any?
Availability 有効性
Technology
init(contentsOfFile path: String
,
options readOptionsMask: NSData
.ReadingOptions
= []) throws
path
The absolute path of the file from which to read data. それからデータ読み出すことになるファイルの絶対パス。
mask
A mask that specifies options for reading the data. Constant components are described in NSData
.
データ読み出しに対するオプションを指定するあるマスク。定数構成要素それらは、NSData
において記述されます。
errorPtr
If an error occurs, upon return contains an NSError
object that describes the problem.
エラーが発生するならば、戻りでは、問題を記述するNSError
オブジェクトを含みます。
A data object initialized by reading into it the data from the file specified by path
.
path
によって指定されるファイルからのデータをそれへと読み出すことによって初期化されるデータオブジェクト。
Handling Errors in Swift: Swiftでのエラー処理:
In Swift, this API is imported as an initializer and is marked with the throws
keyword to indicate that it throws an error in cases of failure.
Swiftでは、このAPIはイニシャライザとしてインポートされて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)
init?(contentsOf : URL)
init(contentsOf : URL, options: NSData.ReadingOptions)
struct NSData.ReadingOptions
init?(contentsOfMappedFile : String)
class func dataWithContentsOfMappedFile (String) -> Any?
+ dataWithContentsOfFile:options:error: