javascript阅读txt文件

javascript阅读txt文件

本文介绍了使用html/javascript阅读txt文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好

我想将txt文件的内容显示到文本框中,这是我的asp.net应用程序之一
.那我该怎么办
我在互联网上搜索,我得到了此代码
我拿了一个脚本标签并放置了此代码

hello every one

I one of my asp.net application i want to display the txt file content into textbox
. So how can i do it
i search in internet i got this code
I took a script tag and place this code

function read()
    {
//  var   file = fopen(getScriptPath("a.txt"), 0);
//  var   file_length = flength(file);
//  var   content = fread(file, file_length);
//document.getElementById("myDiv").innerText = content;
try
    {

        var fso  = new ActiveXObject('Scripting.FileSystemObject');
         alert('ok');

        var fh = fso.OpenTextFile('a.txt',1);
        var contents = fh.ReadAll();
        fh.Close();

        alert(contents);
        //return contents;
    }
    catch (Exception)
    {
       alert('Cannot open file :(');
    }

}




被评论的一个也不起作用,另一个也不能起作用,所以任何人都可以指导我或提出一些建议.




the commented one is also not working nor the other one so can anyone guide me or give some suggestions.

推荐答案



这篇关于使用html/javascript阅读txt文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 13:56