你能在javascript中逐行阅读吗? [英] Can you read line by line in javascript?

查看:111
本文介绍了你能在javascript中逐行阅读吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有办法在javascript中逐行读取文件,特别是文件这是一本字典。我试图建立几个月前制作的java anagram求解器的复制品,但遇到了无法逐行读取文件的问题。我可以下载文件并将其存储在本地,如果能够读取它会有任何区别。

Is there any way to read a file line by line in javascript, specifically this file which is a dictionary. I was trying to build a replica of a java anagram solver I made a few months ago, but hit this problem of not being able to read a file line by line. I could download the file and store it locally if that would make any difference to being able to read it.

推荐答案

使用YQL:

http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20html%20where%20url%3D%22http%3A%2F%2Fdocs.oracle.com%2Fjavase%2Ftutorial%2Fcollections%2Finterfaces%2Fexamples%2Fdictionary.txt%22&format=json&diagnostics=true&callback=cbfunc



这是什么小提琴看起来像:



Here's what the fiddle looks like:

window.callback = function(a) { window.file = a.query.results.body.p; go(); };

$.getScript('http://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20html%20where%20url%3D%22http%3A%2F%2Fdocs.oracle.com%2Fjavase%2Ftutorial%2Fcollections%2Finterfaces%2Fexamples%2Fdictionary.txt%22&format=json&diagnostics=true&callback=callback');

window.go = function() {
    var terms = file.split(' ');

    for (var i = 0; i < 100; i++)
        console.log(terms[i])
};

这个小提琴只做了前100个,但你明白了(我希望)。

The fiddle only does the first 100 but you get the idea (I hope).

这篇关于你能在javascript中逐行阅读吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆