检查ascii纯文本

时间:2012-04-05 05:04:16

标签: javascript jquery html html5

如何检查上传的文件是否为ascii纯文本?

$("#my_file").change(function(){
    //alert if not ascii 
});
<input type="file" name="my_file" id="my_file" />

1 个答案:

答案 0 :(得分:5)

使用HTML5 file APIs(尚未最终确定且所有主流浏览器的所有版本都不支持),您可以通过FileReader.readAsBinaryString(file)读取原始文件内容并确保每个字节(字符)都有值the ASCII character range(0-127)。

例如(see working jsFiddle here):

function ensureAsciiFile(evt) {
  var file, files=evt.target.files;
  for (var i=0; file=files[i]; i++) {
    var reader = new FileReader();
    reader.onload = (function(theFile, theReader) {
      return function(e) {
        var fileContents = theReader.result;
        if (fileContents.match(/[^\u0000-\u007f]/)) {
          alert('ERROR: non-ASCII file "' + theFile.name + '"');
        } else {
          alert('OK: ASCII file "' + theFile.name + '"');
        }
      };
    })(file, reader);
    reader.readAsBinaryString(file);
  }
}
$('#my_file').change(ensureAsciiFile);