java-script:read-file
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
java-script:read-file [2023/08/04 23:17] – [How to read a file (both web and node.js)] odefta | java-script:read-file [2023/08/20 01:19] (current) – ↷ Links adapted because of a move operation 217.113.194.57 | ||
---|---|---|---|
Line 3: | Line 3: | ||
===== Read a file in web browser ===== | ===== Read a file in web browser ===== | ||
- | The following script reads the content of a file selected by the user and then displays those contents in a <pre> element. \\ When the "Read File" button is clicked, the readFile function is called, which reads the file selected in the file input field and writes its contents to the fileContents element. | + | The following script reads the content of a file selected by the user and then displays those contents in a **<pre>** element. \\ When the "Read File" button is clicked, the **readFile** function is called, which reads the file selected in the file input field and writes its contents to the **fileContents** element. |
+ | |||
+ | < | ||
+ | The read file operation using the FileReader API in a web browser is **asynchronous**. When you call readAsText (or any of the other read methods on a FileReader object), it starts the read operation and then immediately returns. The actual reading of the file happens in the background, and when it's done, the onload event is fired. \\ \\ | ||
+ | |||
+ | This is why you provide** an onload callback function (or a promise)** to handle the file data once it's available. If this operation were synchronous (i.e., blocking), the browser would become unresponsive until the read operation completes, which would lead to a poor user experience, especially for large files that might take a noticeable amount of time to read. \\ \\ | ||
+ | |||
+ | In the case of** Node.js and the fs module**, you have the option to read files synchronously using readFileSync, | ||
+ | </ | ||
<note important> | <note important> | ||
Line 17: | Line 25: | ||
</ | </ | ||
+ | |||
+ | ==== Using callback function (on onload event) ==== | ||
+ | |||
+ | The **FileReader** object' | ||
+ | |||
+ | <code javascript read-file-web-callback.html> | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | function readFile() { | ||
+ | const fileInput = document.getElementById(' | ||
+ | const file = fileInput.files[0]; | ||
+ | const reader = new FileReader(); | ||
+ | |||
+ | reader.onload = function(e) { | ||
+ | const contents = e.target.result; | ||
+ | document.getElementById(' | ||
+ | }; | ||
+ | |||
+ | reader.readAsText(file); | ||
+ | } | ||
+ | </ | ||
+ | </ | ||
+ | < | ||
+ | <input type=" | ||
+ | <button onclick=" | ||
+ | <pre id=" | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | ==== Using Promise ==== | ||
+ | |||
+ | If you prefer using **Promise** instead of the **onload** event, you can create a wrapper function around the FileReader API that returns a promise. \\ | ||
+ | A new function **readAsText** wraps the FileReader API and returns a promise. This promise resolves with the file's contents when the onload event is fired, and rejects if there' | ||
+ | |||
+ | <code javascript read-file-web-promise.html> | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | < | ||
+ | function readFile() { | ||
+ | const fileInput = document.getElementById(' | ||
+ | const file = fileInput.files[0]; | ||
+ | |||
+ | readAsText(file).then(contents => { | ||
+ | document.getElementById(' | ||
+ | }); | ||
+ | } | ||
+ | |||
+ | function readAsText(file) { | ||
+ | return new Promise((resolve, | ||
+ | const reader = new FileReader(); | ||
+ | |||
+ | reader.onload = function(e) { | ||
+ | resolve(e.target.result); | ||
+ | }; | ||
+ | | ||
+ | reader.onerror = function(e) { | ||
+ | reject(e); | ||
+ | }; | ||
+ | |||
+ | reader.readAsText(file); | ||
+ | }); | ||
+ | } | ||
+ | </ | ||
+ | </ | ||
+ | < | ||
+ | <input type=" | ||
+ | <button onclick=" | ||
+ | <pre id=" | ||
+ | </ | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | ===== Read a file in Node.js ===== | ||
+ | |||
+ | First you should [[java-script: | ||
+ | |||
+ | <code javascript fileReader.js> | ||
+ | import fs from ' | ||
+ | |||
+ | export async function readFile(filePath) { | ||
+ | try { | ||
+ | const data = await fs.readFile(filePath, | ||
+ | console.log(' | ||
+ | } catch (err) { | ||
+ | console.error(' | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | <code javascript index.js> | ||
+ | import { readFile } from ' | ||
+ | |||
+ | const fileName = process.argv[2]; | ||
+ | if (!fileName) { | ||
+ | console.log(' | ||
+ | process.exit(1); | ||
+ | } | ||
+ | |||
+ | readFile(fileName); | ||
+ | </ | ||
+ | |||
+ | To run it: | ||
+ | < | ||
+ | node ./index.js C:/test.txt | ||
+ | </ | ||
java-script/read-file.1691180237.txt.gz · Last modified: 2023/08/04 23:17 by odefta