搜索资源列表
datafile
- 这是一个Java工具类库,用户读取基于文本的数据文件,如CSV, tab分隔的或固定宽度格式的文件。-This is a Java tool for library users to read text-based data files such as CSV, tab-delimited or fixed width format.
LmmopdeINQ1to2CSV
- INQtoCSV格式转换 INQtoCSV格式转换 -This library makes it easy to use CSV files with LINQ queries. Its features include: Follows the most common rules for CSV files. Correctly handles data fields that contain commas and line breaks. In addition to com
cports
- CurrPorts displays the list of all currently opened TCP/IP and UDP ports on your local computer. For each port in the list, information about the process that opened the port is also displayed, including the process name, full path of the proce
ScanAlyzeCode
- Process fluorescent images of microarrays. Includes semi-automatic definition of grids and complex pixel and spot analyses. Outputs to tab-delimited text files for transfer to any database
VctoExcelClass
- VC输入到Excel通信类代码,附详细的使用说明文档-There are times when we wish to send our output to an Excel file or some text delimited files like comma separated value file or tab delimited file. This class encapsulates the functions for reading and writing to these typ
Tab-dh
- 把文件每行的tab键分隔符改成逗号分隔符的Pthon编程!-The tab key file into each row delimiter comma delimited Pthon programming!
cytoscape.src
- Cytoscape是一款图形化显示网络并进行分析和编辑的软件,见图1,它支持多种网络描述格式,也可以用以Tab制表符分隔的文本文档或Microsoft Excel文件作为输入,或者利用软件本身的编辑器模块直接构建网络。 Cytoscape还能够为网络添加丰富的注释信息,并且可以利用自身以及第三方开发的大量功能插件,针对网络问题进行深入分析。 Cytoscape对非盈利性客户免费,在他的官网上有下载地址。[1] -Cytoscape is a graphical display of the
SpreadSheet
- 支持多字节和unicode编译,有中文注释和例子 //有些时候我们希望将输出的数据存到EXCEL文件或一些符号分隔文本文件(像逗号分隔、Tab符分隔)。CSpreadSheet类封装了对这些文件的读写操作。 //CSpreadSheet类的目标是简单易用,其主要的特性如下: // 1、构造一个新的EXCEL文件或符号分隔文本文件,并在其中写如行或单个的单元。 // 2、读取行、列或单个单元。 // 3、覆盖、插入或追加行。 // 4、将已存在或新的EXCEL文件转化成符号
OperationTXT-3
- 首先通过File.ReadAllLines()方法读入文本文档中内容并返回字符串数组contents,这样每行数据就成为了这个字符串数组contents的一个元素,再利用split()方法将每一个元素以空格或制表符分割,返回字符串数组,这样一行数据又被返回了3个字符串放入字符串数组中,通过Convert.ToDouble()方法将其转化为double类型并计算。创建一个StringBuilder数据类型将每行的字符串添加进去,转换为string后,最后用File.WriteAllText方法写入
OperationTXT-1
- 上述代码中用到File.ReadAllLines()函数,适用于读取较小的文本文档,一次性将全部文本文档内容放入字符串数组contents中,每一行作为contents这个字符串数组的一个元素,下面的循环实现了对contents的遍历,遍历的过程中通过split函数对每个元素按空格或者是制表符进行分割,contents的每个元素被按照空格或制表符分割后返回一个新的字符串数组,放入到新定义的strNew这个字符串数组中,之后输出。 下一步要计算总价格。-The code used in
Tab-Delimited Data
- 将数据写入到文本文件,并以制表符为分割;读取的数据显示在列表框上以及波形图(LabVIEW Read and Write File Demo)