将pdf(编码:UniJIS-UCS2-H)转换为base64

时间:2012-10-26 07:09:21

标签: javascript character-encoding xmlhttprequest base64

我有一个编码UniJIS-UCS2-H的pdf。我想在javascript中将其转换为base 64。 我写了这样的代码。它将其转换为pdf但内容不可见。 我的代码显示如下。

function getBinary(file){
    var xhr = new XMLHttpRequest();  
    xhr.open("GET", file, false);  
   xhr.overrideMimeType("application/pdf; charset=UniJIS-UCS2-H");  
    xhr.send(null);
    return xhr.responseText;
}

function base64encode(binary) {
    return btoa(unescape(encodeURIComponent(binary)));
}

var binary = getBinary('http://localhost/first.pdf');
var base64encoded = base64encode(binary);
data = "data:application/pdf;base64,"+base64encoded;

数据仅包含普通的pdf。我该如何解决?

0 个答案:

没有答案