最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Read CSV file with Javascript into a key value pair array - Stack Overflow

programmeradmin3浏览0评论

There are plenty of examples of reading a CSV file using jQuery however javascript examples are few and far between.

As i am using an internal script editor for a particular application, i am limited to using Javascript only.

I have a csv file that has headings followed by data in each row.

Heading1,Heading2,Heading3,Heading4
row1data1,row1data2,row1data3,row1data4
row2data1,row2data2,row2data3,row2data4

The delimiter being used is , however there could be others e.g. ^.

As i can't upload a file, i have the option to manually reference an absolute path.

Is there a way i can use only javascript to read a csv file?

There are plenty of examples of reading a CSV file using jQuery however javascript examples are few and far between.

As i am using an internal script editor for a particular application, i am limited to using Javascript only.

I have a csv file that has headings followed by data in each row.

Heading1,Heading2,Heading3,Heading4
row1data1,row1data2,row1data3,row1data4
row2data1,row2data2,row2data3,row2data4

The delimiter being used is , however there could be others e.g. ^.

As i can't upload a file, i have the option to manually reference an absolute path.

Is there a way i can use only javascript to read a csv file?

Share Improve this question edited Feb 26, 2014 at 4:32 PeanutsMonkey asked Feb 26, 2014 at 4:24 PeanutsMonkeyPeanutsMonkey 7,09524 gold badges76 silver badges106 bronze badges 9
  • 1 Are you asking how to read a file with javascript? Or how to parse a large string you have in javascript as CSV? – Alex Wayne Commented Feb 26, 2014 at 4:26
  • You can fetch the csv using ajax/text and then split it with newline, then comma – SajithNair Commented Feb 26, 2014 at 4:27
  • @Sajith Nair - I can't use AJAX. I am limited to simple ol' javascript – PeanutsMonkey Commented Feb 26, 2014 at 4:30
  • @Alex Wayne - I am asking to read the contents of a file with javascript and place its contents into an key value array. – PeanutsMonkey Commented Feb 26, 2014 at 4:31
  • 1 @A.K - If you have a look at the 2 posts you cited, they either use PHP, jQuery or AJAX neither of which i can use. – PeanutsMonkey Commented Feb 26, 2014 at 18:38
 |  Show 4 more comments

1 Answer 1

Reset to default 15

As a start, here is a couple of ways to read a file with javascript

HttpRequest: (from web server or absolute path)

Source: Javascript - read local text file

function readTextFile(file)
{
    var rawFile = new XMLHttpRequest();
    rawFile.open("GET", file, true);
    rawFile.onreadystatechange = function ()
    {
        if(rawFile.readyState === 4)
        {
            if(rawFile.status === 200 || rawFile.status == 0)
            {
                var allText = rawFile.responseText;
                alert(allText);
            }
        }
    }
    rawFile.send(null);
}

And specify file:// in your filename when using an absolute path

readTextFile("file:///C:/your/path/to/file.txt");

FileReader API:

Source:
- http://codepen.io/matt-west/pen/KjEHg
- http://blog.teamtreehouse.com/reading-files-using-the-html5-filereader-api

HTML

<div id="page-wrapper">

    <h1>Text File Reader</h1>
    <div>
        Select a text file: 
        <input type="file" id="fileInput">
    </div>
    <pre id="fileDisplayArea"><pre>

</div>

JS

window.onload = function() {
    var fileInput = document.getElementById('fileInput');
    var fileDisplayArea = document.getElementById('fileDisplayArea');

    fileInput.addEventListener('change', function(e) {
        var file = fileInput.files[0];
        var textType = /text.*/;

        if (file.type.match(textType)) {
            var reader = new FileReader();

            reader.onload = function(e) {
                fileDisplayArea.innerText = reader.result;
            }

            reader.readAsText(file);    
        } else {
            fileDisplayArea.innerText = "File not supported!"
        }
    });
}

JS on MS Windows (simple sample)

Source: http://msdn.microsoft.com/en-us/library/czxefwt8(v=vs.84).aspx

function ReadFiles()
{
   var fso, f1, ts, s;
   var ForReading = 1;
   fso = new ActiveXObject("Scripting.FileSystemObject");
   ts = fso.OpenTextFile("c:\\testfile.txt", ForReading);
   s = ts.ReadLine();
   // s holds the text content
   ts.Close();
}
发布评论

评论列表(0)

  1. 暂无评论