使用 JavaScript 读取 Google Gears blob
有谁知道如何在浏览器中读取 google gears blob 对象? 我在 gears 之上使用 gwt,但我正在寻找任何类型的解决方案。 该应用程序需要完全离线工作,因此我无法发布文件并在服务器端处理它们。 我的文件是简单的文本文件,我想在离线模式下上传和解析。
Does anybody know how to read google gears blob objects within the browser? I'm using gwt on top of gears, but I'm looking for any kind of solutions. The application needs to work fully offline so I can't post the files and process them server side. My files are simple text files that I want to upload and parse in offline mode.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我编写了一个非常简单的类来执行此操作,您可以在这里查看:
http://procbits.com /2009/07/29/read-file-contents-blobs-in-gwt-and-gears/
使用起来非常简单。 要么调用方法“readAllText”,要么您可以逐行读取它。 这是逐行阅读的示例:
我希望这会有所帮助!
I wrote a very simple class to do this you can check it out here:
http://procbits.com/2009/07/29/read-file-contents-blobs-in-gwt-and-gears/
It's very simple to use. Either call the method "readAllText" or you can read it line by line. Here is an example reading line by line:
I hope this helps!
您是否查看过 Google Gears API 文档(针对 JavaScript)?
Have you looked at the Google Gears API documentation (for JavaScript)?