OpenOffice Calc can not read a simple CSV file. Why?

前端 未结 3 1577
时光取名叫无心
时光取名叫无心 2021-01-25 03:35

I have a Web site (PHP) that generates a CSV file (text/csv) with the following content:

ID;E-Mail_User;Name;Applikation;Rolle;Auftragsdatum;Administrator
522;user@do         


        
3条回答
  •  耶瑟儿~
    2021-01-25 04:06

    ID; in the first 3 characters of a file is the signature for a SYLK file. The fourth character can be a P, N or an E which flags certain information about how the rest of the file should be processed... so your "CSV" file is almost certainly being parsed as a SYLK file when that initial signature is read, and the remainder of the file is not valid SYLK format.

提交回复
热议问题