हाँ यह FileReader के साथ संभव है, मैं पहले से ही इस का एक उदाहरण किया है, यहाँ कोड है:
<!DOCTYPE html>
<html>
<head>
<title>Read File (via User Input selection)</title>
<script type="text/javascript">
var reader; //GLOBAL File Reader object for demo purpose only
/**
* Check for the various File API support.
*/
function checkFileAPI() {
if (window.File && window.FileReader && window.FileList && window.Blob) {
reader = new FileReader();
return true;
} else {
alert('The File APIs are not fully supported by your browser. Fallback required.');
return false;
}
}
/**
* read text input
*/
function readText(filePath) {
var output = ""; //placeholder for text output
if(filePath.files && filePath.files[0]) {
reader.onload = function (e) {
output = e.target.result;
displayContents(output);
};//end onload()
reader.readAsText(filePath.files[0]);
}//end if html5 filelist support
else if(ActiveXObject && filePath) { //fallback to IE 6-8 support via ActiveX
try {
reader = new ActiveXObject("Scripting.FileSystemObject");
var file = reader.OpenTextFile(filePath, 1); //ActiveX File Object
output = file.ReadAll(); //text contents of file
file.Close(); //close file "input stream"
displayContents(output);
} catch (e) {
if (e.number == -2146827859) {
alert('Unable to access local files due to browser security settings. ' +
'To overcome this, go to Tools->Internet Options->Security->Custom Level. ' +
'Find the setting for "Initialize and script ActiveX controls not marked as safe" and change it to "Enable" or "Prompt"');
}
}
}
else { //this is where you could fallback to Java Applet, Flash or similar
return false;
}
return true;
}
/**
* display content using a basic HTML replacement
*/
function displayContents(txt) {
var el = document.getElementById('main');
el.innerHTML = txt; //display output in DOM
}
</script>
</head>
<body onload="checkFileAPI();">
<div id="container">
<input type="file" onchange='readText(this)' />
<br/>
<hr/>
<h3>Contents of the Text file:</h3>
<div id="main">
...
</div>
</div>
</body>
</html>
यह भी एक ही बात IE के कुछ पुराने संस्करण का समर्थन करने के लिए क्या किया जा सकता है (मुझे लगता है कि 6 -8) ActiveX ऑब्जेक्ट का उपयोग करके, मेरे पास कुछ पुराना कोड था जो कि कुछ समय हो गया है, इसलिए मुझे इसे खोदना होगा। मुझे एक समाधान मिला है जिसकी मैंने Jacky Cui's blog की सौजन्य का उपयोग किया और संपादित किया यह उत्तर (थोड़ा सा कोड साफ़ भी)। आशा करता हूँ की ये काम करेगा।
आखिरकार, मैंने कुछ अन्य उत्तरों को पढ़ा जो मुझे आकर्षित करने के लिए हराते हैं, लेकिन जैसा कि वे सुझाव देते हैं, आप शायद ऐसे कोड की तलाश कर रहे हैं जो आपको सर्वर (या डिवाइस) से टेक्स्ट फ़ाइल लोड करने देता है जहां जावास्क्रिप्ट फ़ाइल बैठी है । अगर ऐसी बात है तो है आप दस्तावेज़ गतिशील लोड करने के लिए जो कुछ किया जाएगा इस प्रकार है AJAX कोड हैं:
<!DOCTYPE html>
<html>
<head><meta charset="utf-8" />
<title>Read File (via AJAX)</title>
<script type="text/javascript">
var reader = new XMLHttpRequest() || new ActiveXObject('MSXML2.XMLHTTP');
function loadFile() {
reader.open('get', 'test.txt', true);
reader.onreadystatechange = displayContents;
reader.send(null);
}
function displayContents() {
if(reader.readyState==4) {
var el = document.getElementById('main');
el.innerHTML = reader.responseText;
}
}
</script>
</head>
<body>
<div id="container">
<input type="button" value="test.txt" onclick="loadFile()" />
<div id="main">
</div>
</div>
</body>
</html>
पढ़ें: http://www.html5rocks.com/en/tutorials/file/dndfiles/। यदि यह एक स्थानीय फ़ाइल है, तो उपयोगकर्ता को सुरक्षा कारणों से फ़ाइल का चयन करना होगा। संबंधित: http://stackoverflow.com/questions/13428532/using-a-local-file-as-a-data-source-in-javascript – NullUserException