csv文件用什么打开_什么是CSV文件,如何打开它?

csv文件用什么打开

csv文件用什么打开

A Comma Separated Values (CSV) file is a plain text file that contains a list of data. These files are often used for exchanging data between different applications. For example, databases and contact managers often support CSV files.

逗号分隔值(CSV)文件是包含数据列表的纯文本文件。 这些文件通常用于在不同应用程序之间交换数据。 例如,数据库和联系人管理器通常支持CSV文件。

These files may sometimes be called Character Separated Values or Comma Delimited files. They mostly use the comma character to separate (or delimit) data, but sometimes use other characters, like semicolons. The idea is that you can export complex data from one application to a CSV file, and then import the data in that CSV file into another application.

这些文件有时可能称为字符分隔值或逗号分隔文件。 他们大多使用逗号分隔(或定界)数据,但有时也使用其他字符,例如分号。 这个想法是,您可以将复杂的数据从一个应用程序导出到CSV文件,然后将该CSV文件中的数据导入到另一个应用程序。

CSV文件的结构 (The Structure of a CSV File)

A CSV file has a fairly simple structure. It’s a list of data separated by commas. For example, let’s say you have a few contacts in a contact manager, and you export them as a CSV file. You’d get a file containing text like this:

CSV文件的结构非常简单。 这是用逗号分隔的数据列表。 例如,假设您在联系人管理器中有几个联系人,然后将它们导出为CSV文件。 您将获得一个包含如下文本的文件:

Name,Email,Phone Number,Address

姓名,电子邮件,电话号码,地址

Bob Smith,bob@example.com,123-456-7890,123 Fake Street

Bob Smith,bob @ example.com,123-456-7890,Fake Street 123

Mike Jones,mike@example.com,098-765-4321,321 Fake Avenue

迈克·琼斯(mike Jones),mike @ example.com,098-765-4321,321 Fake Avenue

That’s all a CSV file really is. They can be more complicated than that, and can contain thousands of lines, more entries on each line, or long strings of text. Some CSV files may not even have the headers at the top, and some may use quotation marks to surround each bit of data, but that’s the basic format.

这就是一个CSV文件。 它们可能比这更复杂,并且可能包含数千行,每行上有更多条目或较长的文本字符串。 一些CSV文件甚至可能没有顶部标题,而某些CSV文件可能会使用引号将数据的每一位括起来,但这是基本格式。

That simplicity is a feature. CSV files are designed to be a way to easily export data and import it into other programs. The resulting data is human-readable and can be easily viewed with a text editor like Notepad or a spreadsheet program like Microsoft Excel.

这种简单性是一个特征。 CSV文件旨在方便导出数据并将其导入其他程序。 生成的数据是人类可读的,并且可以使用文本编辑器(如记事本)或电子表格程序(如Microsoft Excel)轻松查看。

如何在文本编辑器中查看CSV文件 (How to View a CSV File in a Text Editor)

To view the contents of a CSV file in Notepad, right-click it in File Explorer or Windows Explorer, and then select the “Edit” command.

要在记事本中查看CSV文件的内容,请在文件资源管理器或Windows资源管理器中右键单击该文件,然后选择“编辑”命令。

Notepad may have trouble opening the CSV file if it’s very large. In this case, we recommend you use a more capable plain text file editor like Notepad++. To view a CSV file in Notepad++ after installing it, right-click the CSV file and select the “Edit With Notepad++” command.

如果记事本很大,则可能无法打开CSV文件。 在这种情况下,我们建议您使用功能更强大的纯文本文件编辑器,例如Notepad ++ 。 要在安装后在Notepad ++中查看CSV文件,请右键单击CSV文件,然后选择“使用Notepad ++编辑”命令。

You’ll see the plaintext list of data in the CSV file. For example, if the CSV file was exported from a contacts program, you’d see information about each contact here, with the contact’s details sorted onto a new line. If it was exported from a password manager like LastPass, you’d see different website login entries on their own line here.

您将在CSV文件中看到明文数据列表。 例如,如果CSV文件是从联系人程序中导出的,则您会在此处看到有关每个联系人的信息,并将联系人的详细信息分类到新行中。 如果它是从密码管理器(如LastPass )中导出的,则您会在此处看到不同的网站登录条目。

In Notepad, the “Word Wrap” feature can make the data harder to read. Click Format > Word Wrap to disable it and make each line of data stay on its own line for improved readability. You’ll need to scroll horizontally to read the full lines.

在记事本中,“自动换行”功能会使数据难以阅读。 单击格式>换行将其禁用,并使每一行数据保持在自己的行上以提高可读性。 您需要水平滚动以阅读完整的行。

如何在电子表格程序中打开CSV文件 (How to Open a CSV File in a Spreadsheet Program)

You can also open CSV files in spreadsheet programs, which make them easier to read. For example, if you have Microsoft Excel installed on your computer, you can just double-click a .csv file to open it in Excel by default. If it doesn’t open in Excel, you can right-click the CSV file and select Open With > Excel.

您还可以在电子表格程序中打开CSV文件,从而使它们更易于阅读。 例如,如果您的计算机上安装了Microsoft Excel,则默认情况下,只需双击.csv文件即可在Excel中打开它。 如果未在Excel中打开,则可以右键单击CSV文件,然后选择“打开方式”>“ Excel”。

If you don’t have Excel, you could upload the file to a service like Google Sheets or install a free office suite like LibreOffice Calc to view it.

如果没有Excel,则可以将文件上传到Google表格等服务,也可以安装免费的Office套件(如LibreOffice Calc)来查看。

Excel and other spreadsheet programs present the contents of a .CSV file as if it were a spreadsheet, sorting it into columns.

Excel和其他电子表格程序会像显示电子表格一样显示.CSV文件的内容,并将其分类为列。

如何将CSV文件导入应用程序 (How to Import a CSV File Into an Application)

If you just want to view the contents of a CSV file or work with it as a spreadsheet, that’s all you need to do. However, many CSV files are made for importing into other programs. You might export your contacts from Google Contacts, your saved passwords from LastPass, or a large amount of data from a database program. The resulting CSV files can then be imported into applications that support that type of data.

如果您只想查看CSV文件的内容或将其作为电子表格使用,这就是您需要做的一切。 但是,许多CSV文件都可以导入其他程序中。 您可能会从Google通讯录中导出联系人,从LastPass中导出已保存的密码,或者从数据库程序中导出大量数据。 然后可以将生成的CSV文件导入支持该类型数据的应用程序。

Depending on the application from which you’re exporting data, you may need to select an appropriate CSV format for the target application. For example, Google Contacts can export contacts in either Google CSV (for Google Contacts) or Outlook CSV (for Microsoft Outlook) formats. Either way, you get a CSV file containing the data, but it’s organized in a slightly different way.

根据要从中导出数据的应用程序,您可能需要为目标应用程序选择适当的CSV格式。 例如,Google联系人可以导出为Google CSV(对于Google Contacts)或Outlook CSV(对于Microsoft Outlook)格式的联系人。 无论哪种方式,您都会获得一个包含数据的CSV文件,但是它的组织方式略有不同。

In an appropriate application, look for the “Import” or “Import CSV” option, which lets you select the CSV file to import. For example, in Microsoft Outlook, you can click File > Open & Export > Import/Export > Import From Another Program or File > Comma Separated Values to import contacts from a CSV file.

在适当的应用程序中,查找“导入”或“导入CSV”选项,该选项使您可以选择要导入的CSV文件。 例如,在Microsoft Outlook中,您可以单击文件>打开和导出>导入/导出>从其他程序导入,或单击文件>逗号分隔值以从CSV文件导入联系人。

CSV files are something most people never need to bother with. But, if you’ve ever needed to get information out of one application and into another, that’s what they’re there for.

CSV文件是大多数人无需理会的东西。 但是,如果您曾经需要将信息从一个应用程序转移到另一个应用程序中,那么这就是它们的用处。

翻译自: https://www.howtogeek.com/348960/what-is-a-csv-file-and-how-do-i-open-it/

csv文件用什么打开

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/279465.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Python连续攀升,其他的脚本语言去哪了?

Python在TIOBE排行榜排名连续攀升,它的优势掩盖了一个严肃的问题:其他的脚本语言去哪儿了?据2017年11月的TIOBE指数显示,其他语言(如Perl,PHP和Ruby)排名正在缓慢下滑。 不久之前,脚本语言风靡一时。动态类型语言不仅…

div水平垂直居中

水平垂直居中 效果 html <div class"m-box"><div class"m-temp"><div class"m-item">fsdafsfasdf</div><div class"m-item">fsdafsfasdf</div><div class"m-item">fsdafsfasdf&l…

【C】C语言结构体指针的语法

#include <stdio.h> #include <string.h> #include <stdlib.h>struct AGE {int year;int month;int day; };struct Student {char *name;int num;struct AGE birthday;float score; };int main() {// 注意写法1与写法2 不能混用// 写法1struct Student* stu …

禁用磁盘检查_如何在Windows上禁用“磁盘空间不足”警告

禁用磁盘检查Windows displays “Low Disk Space” notifications whenever any partition on your computer has less than 200 MB of space remaining. Here’s how to get rid of the notifications, even if you can’t free up the space. 只要计算机上任何分区的剩余空间…

java根据身份证号码计算年龄的方法(精确到日)

/*** 根据身份证号码计算年龄** param psptNo* return*/public int getAgeByPsptNo(String psptNo) {if (StringUtils.isEmpty(psptNo)) {return 0;}String birthDay psptNo.substring(6, 14);String time new SimpleDateFormat("yyyy-MM-dd").format(new Date());…

ZT:CSS实现水平|垂直居中漫谈

有篇博客园网友‘云轩奕鹤’的文章不错&#xff0c;转载在这里以供需要时查阅。 http://www.cnblogs.com/jadeboy/p/5107471.html 本文转自张昺华-sky博客园博客&#xff0c;原文链接&#xff1a;http://www.cnblogs.com/xiandedanteng/p/6271281.html&#xff0c;如需转载请自…

facebook数据_Facebook的“下载数据”功能遗漏了很多

facebook数据Facebook lets you download a ZIP file with all of your data—in theory. Turns out a lot of information isn’t included. 从理论上讲&#xff0c;Facebook可让您下载包含所有数据的ZIP文件。 事实证明&#xff0c;其中不包含很多信息。 Here’s Nitasha Tik…

直播源码中有哪些网络协议需要注意?

在当今的直播平台中&#xff0c;对直播源码越来越注重。那么直播源码中有哪些网络协议需要注意的呢&#xff1f; 1.TCP&#xff1a;TCP为点对点的协议&#xff0c;虽然能保证了数据传输的可靠性&#xff0c;但是对服务器资源耗费较大&#xff0c;在数据流大的场合难以保证数据流…

tomcat一闪而过

JAVA_HOME should point to a JDK not a JRE |vista tomcat 有的朋友在启动Tomcat的时候会出现问题。 1例如&#xff1a; 手动点击startup.bat 后 &#xff0c;一闪而过 2例如&#xff1a;在cmd下 进到tomcat的bin目录 运行 startup.bat &#xff0c;然后输出 了JAVA_HOME shou…

Shell 快速指南

███████╗██╗ ██╗███████╗██╗ ██╗ ██╔════╝██║ ██║██╔════╝██║ ██║ ███████╗███████║█████╗ ██║ ██║ …

UmiJS CDN 部署之 publicPath

为什么80%的码农都做不了架构师&#xff1f;>>> 静态资源在非根目录或 cdn 这时&#xff0c;就需要配置 publicPath。至于 publicPath 是啥&#xff1f;具体看 webpack 文档&#xff0c;把他指向静态资源&#xff08;js、css、图片、字体等&#xff09;所在的路径。…

check corners_免费下载:将Mac样式的Hot Corners添加到Windows 10

check cornersWindows: Move your mouse to any corner to quickly see all your open windows, your desktop, or even start your screen saver. Windows&#xff1a;将鼠标移到任意角落可快速查看所有打开的窗口&#xff0c;桌面&#xff0c;甚至启动屏幕保护程序。 It’s c…

centos

1. ssh 登录 centos 服务器 引用: https://www.cnblogs.com/loseself/p/9599745.html 2. ssh 登录 失败: WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! 引用: https://blog.csdn.net/xlgen157387/article/details/52669709 3. 编译安装 git 引用: https://git-scm.com/bo…

网易前端面试题总结,你见过几个?

划重点 很幸运地能收到网易的面试通知&#xff0c;就毫不犹豫去面试了~三点的面试&#xff0c;因为从来没去过那个中关村西北旺区&#xff0c;吃完饭早早就去了,想象中那里应该是繁华的地方&#xff0c;到了发现都在建设中&#xff0c;很多还在建设中&#xff0c;看到了…

webpack 配置详解

最近在学习webpack&#xff0c;边学边练习&#xff0c;下面是对一些应用到的属性、插件记录分享出来&#xff0c;也方便以后查找与复习&#xff0c;过程中碰到了一些坑&#xff0c;在注释中有说明&#xff1a; const path require(path) const webpack require("webpack…

连续对焦 auto对焦_如何在Windows 10上使用对焦辅助(请勿打扰模式)

连续对焦 auto对焦Windows 10’s “Focus Assist” feature is a “Do Not Disturb” mode that hides notifications. Windows automatically activates it when you’re playing PC games or mirroring your display—and you can have Windows automatically activate it on…

小米品牌

对于现阶段的小米公司来说&#xff0c;他们的策略是行走在钢丝上的。为什么这么说呢&#xff1f;原因是营销策略的优势和劣势都很容易被人翻转。换句话来说就是优势的稳定性不够&#xff0c;劣势的方面又很容易崩盘&#xff0c;这两个方向的丝毫失误都会带给小米公司严重的打击…

wepy学习笔记之环境搭建

写了近两年小程序了&#xff0c;越来越发现原生小程序有太多鸡肋的地方。所以今天准备尝试一下wepy&#xff0c;正好最近手上有个外包&#xff0c;可以拿来练手。如果可以的话&#xff0c;或许会出一系列wepy相关的文章&#xff08;偏实战&#xff09;&#xff0c;欢迎大佬们指…

山东青岛市南区:创建物联网 信息化管理涉案财物

近日,山东省青岛市市南区检察院自主设计研发“物联网”涉案财物管理系统,使涉案财物管理工作步入了信息化管理模式。 涉案财物管理工作是案件办理过程中一个相当重要的环节,而以往主要靠人工进行涉案财物管理,工作繁琐,业务量大,存在查找困难、堆放混乱等问题。库存现状不能及时…

spotify能免费下歌吗_Spotify免费版与高级版:值得升级吗?

spotify能免费下歌吗Spotify offers two tiers: a free, ad-supported plan and a $9.99 per month Premium plan. But what are the differences between the two and is it worth upgrading? Let’s find out. Spotify提供两个等级&#xff1a;免费的广告支持计划和每月9.99…