0

我使用通用算法来编写理论上适用于主要操作系统的 CSV 文件。但是,客户几周前开始使用 Mac,他们一直告诉我无法在 Microsoft Excel 2008 for Mac 12.2.1 中读取 CSV 文件。

他们的操作系统配置为使用“分号;” 作为列表分隔符,这正是我在 CSV 中所写的。他们还说,当他们在记事本中打开文件时,他们注意到没有换行符,所有内容都显示在一行中;这就是 Excel 无法正确读取文件的原因;但在我的代码中,我使用的是跨浏览器换行符\r\n

这是我使用的完整代码:

header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
// Output to browser with appropriate mime type, you choose ;)
header("Content-type: text/x-csv");
//header("Content-type: text/csv");
//header("Content-type: application/csv");
header("Content-Disposition: attachment; filename=participantes.csv");

$separator = ";";
$rs = $sql->doquery("SELECT A QUERY TO RETRIEVE DATA FROM THE DB");

$header = "";
$num_fields = mysql_num_fields($rs);

for($i=0; $i<$num_fields; $i++){
  $field = mysql_field_name($rs, $i);
  $header .= $field.$separator;
}

echo $header."\r\n";

while($row = $sql->fetch($rs)){
  $str = "";
  for($i=0; $i<$num_fields; $i++){
    $field = mysql_field_name($rs, $i);
    $value = str_replace(";", ",", $row->{$field});
    $value = str_replace("\n", ",", $value);
    $value = str_replace("\d", ",", $value);
    $value = str_replace(chr(13), ",", $value);
    $str .= $value.$separator;
  }
  echo $str."\r\n";
}

有什么我可以做的,以便 Mac 用户可以正确读取文件?

4

3 回答 3

1

出于调试目的:

  1. 创建一个 CSV 文件并通过邮件发送给他们。他们可以打开它吗?
  2. 让他们从您的页面下载文件并将其发回给您。比较十六进制编辑器中的文件,以排除它们看起来与您发送到浏览器或您保存的文件不同的可能性。
  3. 让他们仔细检查他们的 Excel 设置。
  4. 让他们从头开始创建一个有效的 CSV 文件(Mac 上的文本编辑器)并发现与您的方法的任何差异。
于 2010-04-08T16:15:47.920 回答
0

这是我将制表符分隔的数据转换为 CSV 的一些代码,它在我的 Mac 上运行良好。请注意,我已将其设置为让我点击下载,而不是将其推送到浏览器。这不是一个很好的解决方案(我很确定代码是废话),但它可以满足我的需要。

$input = $_POST['input'];
//Remove commas.
$replacedinput1 = str_replace(",", "-", $input);
//remove tabs, replace with commas
$replacedinput2 = str_replace(" ", ",", $replacedinput1);
//create an array
$explodedinput = explode("
", $replacedinput2);
//open the CSV file to write to; delete other text in it
$opencsvfile = fopen("/var/www/main/tools/replace_tab.csv","w+");
//for each line in the array, write it to the file
foreach($explodedinput as $line) {
fputcsv ($opencsvfile, split(',', $line));
};
//close the file
fclose($opencsvfile);
//have the user download the file.
/*
header('Pragma: public');
header('Expires: Fri, 01 Jan 2010 00:00:00 GMT');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Content-Type: application/csv');
header('Content-Disposition: filename=replace_tab.csv'); */

//Or not, since I can't get it to work.
echo "<a href='replace_tab.csv'>Download CSV File, then open in Numbers or Excel (Note, you may need to right click, save as.)</a>.";
于 2010-04-08T16:08:55.690 回答
0

Mac 中的换行符是 LF(unicode U+000A),而在 Windows 中是 CR + LF(Unicode U+000D 后跟 U+000A)。

也许这就是为什么 csv 在 Mac 上不可读的原因。

于 2011-09-01T06:08:16.050 回答