我尝试使用Javascript创建CSV文件下载。
我们需要将数据从我们的网站导出到第三方程序,创建和下载工作非常顺利。只有一个问题,我需要用ANSI编码的CSV文件(Windows-1252) - 第三方程序很老,无法理解多字节编码。我的文件以UTF-8提供,直到现在才发现将文件转换为ANSI,我总是得到UTF-8-Content ......
当前的修补程序是打开文件并手动将编码更改为ANSI,但这并不好,对于我公司的一些人来说很难做到(有时他们会忘记它,因为他们对PC不太熟悉)。
我想要一个可以在ANSI中使用的文件,而不是UTF-8。我可以在PHP中转换文件,它具有正确的编码和内容,但我在服务器上没有写入Access,这就是为什么我需要使用AJAX下载文件动态。
我在Stackoverflow上使用了像他这样的解决方案:https://stackoverflow.com/a/22089405/5092608
但我将UTF-8作为内容。
我退后一步,尝试在一个非常简单的页面上使用JavaScript进行转换,但我也得到了UTF-8 ......:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html" charset="utf-8" />
<title>My File-Download</title>
<script type='text/javascript' src='encoding.js'></script>
<script type='text/javascript' src='encoding-indexes.js'></script>
<script type='text/javascript' src='FileSaver.min.js'></script>
<script type='text/javascript'>
<!--
/**
* Downloads the Text as File
*
* @param {string} filename - Name of the File
* @param {string} text - Content of the File
*/
function downloadExportFile(filename, text) {
var encodedText = new TextEncoder("windows-1252", {NONSTANDARD_allowLegacyEncoding: true}).encode([text]);
var blob = new Blob([encodedText], {type: 'text/plain;charset=windows-1252;'});
saveAs(blob, filename);
}
// -->
</script>
</head>
<body>
<a href="#" onclick="downloadExportFile('export.csv', 'Dragicevic,Peter,,1,Straße 4,21027,Hamburg,43,,,,,,,,');">Download Windows-1252 CSV-File</a>
</body>
</html>
我没有发现很多关于将UTF-8转换为ANSI的信息(但另一方面是大量的解决方案)。有没有人知道用JavaScript获取ANSI(Windows-1252)-File的解决方案?
答案 0 :(得分:1)
希望对您有帮助!
Polyfill for the Encoding Living Standard's API
下载文件encoding-indexes.js和encoding.js
HTML示例:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<script>
window.TextEncoder = window.TextDecoder = null;
</script>
<script type="text/javascript" src="encoding-indexes.js"></script>
<script type="text/javascript" src="encoding.js"></script>
<script>
function BlobDownload(Filename, Bytes, Mimetype) {
var filData = new Blob(Bytes, { type: Mimetype });
if (window.navigator && window.navigator.msSaveOrOpenBlob) { // for IE
window.navigator.msSaveOrOpenBlob(filData, Filename);
} else { // for Non-IE (chrome, firefox etc.)
var a = document.createElement("a");
document.body.appendChild(a);
a.style = "display: none";
var filUrl = URL.createObjectURL(filData);
a.href = filUrl;
a.download = Filename;
a.click();
a.remove();
}
};
function download() {
var bytes = new TextEncoder("windows-1252", { NONSTANDARD_allowLegacyEncoding: true }).encode("Eu não tenho mais dúvidas");
BlobDownload("test_windows1252_encoding.txt", [bytes]);
BlobDownload("test_windows1252_encoding.csv", [bytes], "text/csv");
}
</script>
</head>
<body>
<button onclick="download()">Download</button>
</body>
</html>