在各种浏览器中以 javascript 在客户端读取文件内容
我正在尝试提供一个纯脚本解决方案,用于通过浏览器读取客户端计算机上文件的内容。
我有一个与Firefox和Internet Explorer一起使用的解决方案。它不漂亮,但我目前只是在尝试一些事情:
function getFileContents() {
var fileForUpload = document.forms[0].fileForUpload;
var fileName = fileForUpload.value;
if (fileForUpload.files) {
var fileContents = fileForUpload.files.item(0).getAsBinary();
document.forms[0].fileContents.innerHTML = fileContents;
} else {
// try the IE method
var fileContents = ieReadFile(fileName);
document.forms[0].fileContents.innerHTML = fileContents;
}
}
function ieReadFile(filename)
{
try
{
var fso = new ActiveXObject("Scripting.FileSystemObject");
var fh = fso.OpenTextFile(filename, 1);
var contents = fh.ReadAll();
fh.Close();
return contents;
}
catch (Exception)
{
return "Cannot open file :(";
}
}
我可以打电话,它会把内容写进文本区域。getFileContents()
fileContents
有没有办法在其他浏览器中执行此操作?
我目前最关心的是Safari和Chrome,但我对任何其他浏览器的建议持开放态度。
编辑:在回答“你为什么要这样做?”这个问题时:
基本上,我想在客户端将文件内容与一次性密码一起散列,以便我可以将此信息作为验证发送回去。