blob: 5f9109dcc0420be9f1889e75f5f2d13fe5f216c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
---
title: FileReader.readAsText()
slug: Web/API/FileReader/readAsText
tags:
- API
- File API
- Reference
- ファイル
- メソッド
translation_of: Web/API/FileReader/readAsText
---
<div>{{APIRef("File API")}}</div>
<p><strong><code>readAsText()</code></strong> メソッドは、指定された {{domxref("Blob")}} または {{domxref("File")}} の内容を読み取るために使用します。読み取り操作が完了すると、 {{domxref("FileReader.readyState","readyState")}} が <code>DONE</code> に変わり、 {{event("loadend")}} イベントが発生し、 {{domxref("FileReader.result","result")}} プロパティにはファイルの内容が文字列として格納されます。</p>
<div class="blockIndicator note">
<p><strong>より新しい API が利用できます</strong><br>
{{domxref("Blob.text()")}} メソッドは、ファイルをテキストとして読み取るための新しい Promise ベースの API です。</p>
</div>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox notranslate"><var>instanceOfFileReader</var>.readAsText(<var>blob</var>[, <var>encoding</var>]);</pre>
<h3 id="Parameters" name="Parameters">引数</h3>
<dl>
<dt><code>blob</code></dt>
<dd>メソッドで読み込む {{domxref("Blob")}} または {{domxref("File")}} オブジェクトです。</dd>
<dt><code>encoding</code> {{optional_inline}}</dt>
<dd>読込の際に使用する文字エンコーディングを指定する文字列です。この引数が指定されなかった場合は UTF-8 で解釈されます。</dd>
</dl>
<h2 id="Specifications" name="Specifications">仕様</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">状態</th>
<th scope="col">備考</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName("File API", "#FileReader-interface", "FileReader")}}</td>
<td>{{Spec2("File API")}}</td>
<td>初回定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザの互換性</h2>
<p class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</p>
<p>{{Compat("api.FileReader.readAsText")}}</p>
<h2 id="See_also" name="See_also">あわせて参照</h2>
<ul>
<li>{{domxref("FileReader")}}</li>
</ul>
|