gpt4 book ai didi

Javascript -> 下载以 ISO-8859-1/Latin1/Windows-1252 编码的 CSV 文件

转载 作者:搜寻专家 更新时间:2023-11-01 05:30:21 25 4
gpt4 key购买 nike

我开发了一个小工具来从 Amazon CSV 订单数据中提取运输数据。到目前为止它有效。这是 JS Bin 的简单版本:http://output.jsbin.com/jarako

为了打印邮票/运输标签,我需要一个文件来上传到德国邮政和其他包裹服务。我使用了一个在 stackoverflow 上找到的小函数 saveTextAsFile。到目前为止一切都很好。在输出文本区域或下载的文件中没有错误显示特殊字符 (äöüß...)。

所有这些德国邮政/包裹服务网站仅接受 latin1/iso-8859-1 编码文件上传。但是我下载的文件总是utf-8。如果我上传它,所有特殊字符 (äöüß...) 都会出错。

我怎样才能改变这个?我仍然搜索了很多。我已经尝试过,即:

将工具的字符集设置为 iso-8859-1:

<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

但结果是:现在我在输出文本区域和下载文件中仍然有错误的特殊字符。如果我将它上传到帖子站点,我仍然会得到更多错误的字符。此外,如果我在 CODA 编辑器中检查编码,它仍然说下载的文件是 UTF-8。

saveTextAsFile 函数使用 var textFileAsBlob = new Blob([textToWrite], {type:'text/plain'});。可能有一种方法可以在那里设置下载的字符集!?

function saveTextAsFile()
{
var textToWrite = $('#dataOutput').val();
var textFileAsBlob = new Blob([textToWrite], {type:'text/plain'});
var fileNameToSaveAs = "Brief.txt";

var downloadLink = document.createElement("a");
downloadLink.download = fileNameToSaveAs;
downloadLink.innerHTML = "Download File";
if (window.webkitURL != null)
{
// Chrome allows the link to be clicked
// without actually adding it to the DOM.
downloadLink.href = window.webkitURL.createObjectURL(textFileAsBlob);
}
else
{
// Firefox requires the link to be added to the DOM
// before it can be clicked.
downloadLink.href = window.URL.createObjectURL(textFileAsBlob);
downloadLink.onclick = destroyClickedElement;
downloadLink.style.display = "none";
document.body.appendChild(downloadLink);
}

downloadLink.click();
}

无论如何,必须有一种方法可以下载网站本身使用的其他编码的文件。我从中下载 CSV 文件的亚马逊网站采用 UTF-8 编码。但是如果我在 CODA 中检查它,从那里下载的 CSV 文件是 Latin1 (iso-8859-1)...

最佳答案

向下滚动到更新以获得真正的解决方案!

因为没有得到答案,所以我找了越来越多。看起来 Javascript 中没有解决方案。我用 javascript 生成的每个测试下载都是 UTF-8 编码的。看起来 Javascript 仅适用于 UNICODE/UTF-8 或其他编码(可能)仅适用于使用以前的 HTTP 传输再次传输数据的情况。但是对于在客户端上运行的 Javascript,不会发生额外的 HTTP 传输,因为数据仍在客户端上。

我现在已经帮助我在我的服务器上构建了一个小的 PHP 脚本,我通过 GET 或 POST 请求向其发送数据。它将编码转换为 latin1/ISO-8859-1 并将其下载为文件。这是一个具有正确编码的特殊字符的 ISO-8859-1 文件,我可以将其上传到上述邮政和包裹服务站点,一切看起来都不错。

latin-download.php:(将 PHP 文件本身也保存在 ISO-8859-1 中以使其工作非常重要!!)

<?php
$decoded_a = urldecode($_REQUEST["a"]);
$converted_to_latin = mb_convert_encoding($decoded_a,'ISO-8859-1', 'UTF-8');
$filename = $_REQUEST["filename"];
header('Content-Disposition: attachment; filename="'.$filename.'"; content-type: text/plain; charset=iso-8859-1;');
echo $converted_to_latin;
?>

在我使用的 javascript 代码中:

<a id="downloadlink">Download File</a>

<script>
var mydata = "this is testdata containing äöüß";

document.getElementById("downloadlink").addEventListener("click", function() {
var mydataToSend = encodeURIComponent(mydata);
window.open("latin-download.php?a=" + mydataToSend + "&filename=letter-max.csv");
}, false);
</script>

对于更大数量的数据,您必须从 GET 切换到 POST...

2016 年 2 月 8 日更新

半年后,现在我在 PURE JAVASCRIPT 中找到了解决方案。使用inexorabletash/text-encoding .这是 Encoding Living Standard 的 polyfill .该标准包括对 latin1(“windows-1252”)等旧编码的解码,但它禁止编码为这些旧编码类型。因此,如果您使用浏览器实现的 window.TextEncoder 函数,它确实只提供 UTF 编码。但是,polyfill solution提供了一种传统模式,它也允许编码为旧编码,如 latin1。

我是这样使用的:

<!DOCTYPE html>
<script>
// 'Copy' browser build in TextEncoder function to TextEncoderOrg (because it can NOT encode windows-1252, but so you can still use it as TextEncoderOrg() )
var TextEncoderOrg = window.TextEncoder;
// ... and deactivate it, to make sure only the polyfill encoder script that follows will be used
window.TextEncoder = null;

</script>
<script src="lib/encoding-indexes.js"></script> // needed to support encode to old encoding types
<script src="lib/encoding.js"></script> // encording polyfill

<script>

function download (content, filename, contentType) {
if(!contentType) contentType = 'application/octet-stream';
var a = document.createElement('a');
var blob = new Blob([content], {'type':contentType});
a.href = window.URL.createObjectURL(blob);
a.download = filename;
a.click();
}

var text = "Es wird ein schöner Tag!";

// Do the encoding
var encoded = new TextEncoder("windows-1252",{ NONSTANDARD_allowLegacyEncoding: true }).encode(text);

// Download 2 files to see the difference
download(encoded,"windows-1252-encoded-text.txt");
download(text,"utf-8-original-text.txt");

</script>

encoding-indexes.js 文件大约有 500kb 大,因为它包含了所有的编码表。因为我只需要 windows-1252 编码,为了我的使用,我删除了这个文件中的其他编码。所以现在只剩下 632 字节了。

关于Javascript -> 下载以 ISO-8859-1/Latin1/Windows-1252 编码的 CSV 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31654292/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com