Reading Google Gears blobs with JavaScript - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T16:13:24Z http://stackoverflow.com/feeds/question/1042190 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1042190/reading-google-gears-blobs-with-javascript 1 Reading Google Gears blobs with JavaScript Salla 2009-06-25T04:29:39Z 2009-07-29T21:34:32Z <p>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.</p> http://stackoverflow.com/questions/1042190/reading-google-gears-blobs-with-javascript/1042698#1042698 0 Answer by Ionut G. Stan for Reading Google Gears blobs with JavaScript Ionut G. Stan 2009-06-25T08:00:10Z 2009-06-25T08:00:10Z <p>Have you looked at the <a href="http://code.google.com/apis/gears/" rel="nofollow">Google Gears API documentation</a> (for JavaScript)?</p> http://stackoverflow.com/questions/1042190/reading-google-gears-blobs-with-javascript/1203202#1203202 1 Answer by JP for Reading Google Gears blobs with JavaScript JP 2009-07-29T21:34:32Z 2009-07-29T21:34:32Z <p>I wrote a very simple class to do this you can check it out here: <a href="http://procbits.com/2009/07/29/read-file-contents-blobs-in-gwt-and-gears/" rel="nofollow">http://procbits.com/2009/07/29/read-file-contents-blobs-in-gwt-and-gears/</a></p> <p>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:</p> <pre><code>try { Desktop dt = Factory.getInstance().createDesktop(); dt.openFiles(new OpenFilesHandler(){ public void onOpenFiles(OpenFilesEvent event) { File[] files = event.getFiles(); File file = files[0]; Blob data = file.getBlob(); BlobReader br = new BlobReader(data); while (!br.endOfBlob()) Window.alert(br.readLine()); } }, true); } catch (Exception ex){ Window.alert(ex.toString()); } </code></pre> <p>I hope this helps!</p>