This is a small part of my application, in this it wants to store a file in local with javascript. Put the file content like a string into a div. Create a new file with the content of the div. The problem is that i can create the file with the content, but the file is not the same, it is corrupt. so, i think that is a problem with the reading of the file. I think that the problem could be related with the "optional DOMString encoding" of the reader and the blob.

Let my show you:

window.requestFileSystem  = window.requestFileSystem || window.webkitRequestFileSystem;

var fs_=null;

function onInitFs(fs) {
 console.log('Opened file system: ' + fs.name);
  fs_=fs;
}

window.requestFileSystem(window.TEMPORARY, 5*1024*1024 /*5MB*/, onInitFs, errorHandler);

 function addDroppedFiles(file) {

    fs_.root.getFile(file.name, {create: true, exclusive: true}, function(fileEntry) {
      alert('check');
      fileEntry.createWriter(function(fileWriter) {
        fileWriter.onerror = function(e) {
          errorHandler(e.currentTarget.error);
        };
        fileWriter.write(file);
        //
         var reader = new FileReader();
var start = 0;
var stop = file.size - 1;
// If we use onloadend, we need to check the readyState.
reader.onloadend = function(evt) {
  if (evt.target.readyState == FileReader.DONE) { // DONE == 2
    document.getElementById('byte_content').textContent = evt.target.result;
    document.getElementById('byte_range').textContent = 
        ['Read bytes: ', start + 1, ' - ', stop + 1,
         ' of ', file.size, ' byte file'].join(''); 
  }
};

if (file.webkitSlice) {
  var blob = file.webkitSlice(start, stop + 1);
} else if (file.mozSlice) {
  var blob = file.mozSlice(start, stop + 1);
}
alert(blob);
reader.readAsText(blob);
        //
      }, errorHandler);
    }, errorHandler);

}

if (!window.BlobBuilder && window.WebKitBlobBuilder)
window.BlobBuilder = window.WebKitBlobBuilder;

function creacopia(){
    fs_.root.getFile('182.png', {create: true, exclusive: true}, function(fileEntry) {

    fileEntry.createWriter(function(fileWriter) {

  fileWriter.onwriteend = function(e) {
    console.log('Write completed.');
  };

  fileWriter.onerror = function(e) {
    console.log('Write failed: ' + e.toString());
  };

  // Create a new Blob and write it to log.txt.
  var bb = new BlobBuilder(); // Note: window.WebKitBlobBuilder in Chrome 12.
  bb.append($('#byte_content').html());
  fileWriter.write(bb.getBlob());

}, errorHandler);

    },errorHandler);
}

Thank.

link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.