class FileReader extends Object
The FileReader object lets web applications asynchronously read the contents of files (or raw data buffers) stored on the user's computer, using File or Blob objects to specify the file or data to read.
File objects may be obtained from a FileList object returned as a result of a user selecting files using the element, from a drag and drop operation's DataTransfer object, or from the mozGetAsFile() API on an HTMLCanvasElement.
- Annotations
- @RawJSType() @native()
- See also
https://developer.mozilla.org/en-US/docs/Web/API/FileReader
- Alphabetic
- By Inheritance
- FileReader
- Object
- Any
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new FileReader()
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
abort(): Unit
Aborts the read operation.
Aborts the read operation. Upon return, the readyState will be DONE.
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
error: DOMError
A DOMError representing the error that occurred while reading the file.
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hasOwnProperty(v: String): Boolean
- Definition Classes
- Object
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
isPrototypeOf(v: Object): Boolean
- Definition Classes
- Object
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
var
onabort: Function
A handler for the abort event.
A handler for the abort event. This event is triggered each time the reading operation is aborted.
-
var
onerror: Function
A handler for the error event.
A handler for the error event. This event is triggered each time the reading operation encounter an error.
-
var
onload: Function
A handler for the load event.
A handler for the load event. This event is triggered each time the reading operation is successfully completed.
-
var
onloadend: Function
A handler for the loadend event.
A handler for the loadend event. This event is triggered each time the reading operation is completed (either in success or failure).
-
var
onloadstart: Function
A handler for the loadstart event.
A handler for the loadstart event. This event is triggered each time the reading is starting.
-
var
onprogress: Function
A handler for the progress event.
A handler for the progress event. This event is triggered while reading a Blob content.
-
def
propertyIsEnumerable(v: String): Boolean
- Definition Classes
- Object
-
def
readAsArrayBuffer(blob: |[Blob, File]): Unit
The FileReader interface's readAsArrayBuffer() method is used to start reading the contents of a specified Blob or File.
The FileReader interface's readAsArrayBuffer() method is used to start reading the contents of a specified Blob or File. When the read operation is finished, the readyState becomes DONE, and the loadend is triggered. At that time, the result attribute contains an ArrayBuffer representing the file's data.
-
def
readAsBinaryString(blob: |[Blob, File]): Unit
The readAsBinaryString method is used to start reading the contents of the specified Blob or File.
The readAsBinaryString method is used to start reading the contents of the specified Blob or File. When the read operation is finished, the readyState becomes DONE, and the loadend is triggered. At that time, the result attribute contains the raw binary data from the file.
-
def
readAsDataURL(blob: |[Blob, File]): Unit
The readAsDataURL method is used to read the contents of the specified Blob or File.
The readAsDataURL method is used to read the contents of the specified Blob or File. When the read operation is finished, the readyState becomes DONE, and the loadend is triggered. At that time, the result attribute contains the data as a URL representing the file's data as a base64 encoded string.
-
def
readAsText(blob: |[Blob, File], encoding: String = js.native): Unit
The readAsText method is used to read the contents of the specified Blob or File.
The readAsText method is used to read the contents of the specified Blob or File. When the read operation is complete, the readyState is changed to DONE, the loadend is triggered, and the result attribute contains the contents of the file as a text string.
-
def
readyState: Int
A number indicating the state of the FileReader.
A number indicating the state of the FileReader.
-
def
result: Any
The file's contents.
The file's contents. This property is only valid after the read operation is complete, and the format of the data depends on which of the methods was used to initiate the read operation.
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toLocaleString(): String
- Definition Classes
- Object
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
valueOf(): Any
- Definition Classes
- Object
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )