一个CSV文件操作类,功能比较齐全:

package tool;

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Vector;
//参考 http://wenku.baidu.com/view/dfc319c689eb172ded63b7ee.html
public class CsvUtil {
private String fileName=null;
private BufferedReader bufferedReader=null;
private Vector v=new Vector(); public CsvUtil(String filename) throws IOException
{
this.fileName=filename;
bufferedReader=new BufferedReader(new FileReader(fileName));
String stemp;
while((stemp=bufferedReader.readLine())!=null)
{
if(!stemp.startsWith("#"))//以#开头表示注释
v.add(stemp); } }
public Vector getVector()
{
return v;
}
//得到CSV的行数
public int getRowCount()
{
return v.size();
} //取得指定行 public String getRow(int index)
{
if(this.getRowCount()==0)
return null;
return (String)v.get(index);
}
//取得指定列
public String getColumn(int index)
{
if(this.getColumnCount()==0)
{
return null;
}
StringBuffer scol=new StringBuffer();
String temp=null;
int column=this.getColumnCount();
if(column>=1)
{
for(Iterator it=v.iterator();it.hasNext();)
{
temp=it.next().toString();
scol=scol.append(temp.split(",")[index]+","); }
} String str=new String(scol.toString());
str=str.substring(0,str.length()-1);
return str; }
//得到列数
public int getColumnCount()
{
if(!v.toString().equals("[]"))
{
if(v.get(0).toString().contains(","))
{
return v.get(0).toString().split(",").length;
}
else if(v.get(0).toString().trim().length()!=0)
{
return 1;
}
else
{
return 0;
} }
else
{
return 0; } } //取得指定行,指定列的值
public String getValueAt(int row,int col)
{
String temp=null;
int column=this.getColumnCount();
if(column>=1)
{
temp=v.get(row).toString().split(",")[col];
} else
{
temp=null;
}
return temp; } public void insertRow(Vector v) throws IOException
{
//当前的vector增加
// this.v.add错误 BufferedWriter bw=new BufferedWriter(new FileWriter(this.fileName,true));//一定要接true,表示追加
StringBuffer temp=new StringBuffer();
Iterator it=v.iterator();
temp.append(it.next().toString());
if(v.size()>1)
{
while(it.hasNext())
{
temp.append(","+it.next().toString());
}
}
bw.write(temp.toString());
bw.newLine();
bw.flush();
bw.close(); }
public void deleteRow(int index) throws IOException
{
v.remove(index); BufferedWriter bw=new BufferedWriter(new FileWriter(this.fileName));
for(Iterator it=v.iterator();it.hasNext();)
{
bw.write(it.next().toString());
bw.newLine();//一定要有 }
bw.flush();
bw.close(); } public void printAll()
{
Iterator it=v.iterator();
while(it.hasNext())
{
System.out.println(it.next().toString());
}
} public void CsvClose() throws IOException
{
this.bufferedReader.close();
} public static void main(String[] args) throws IOException
{
CsvUtil cu=new CsvUtil("data/user.txt");
/*
String s11=cu.getValueAt(1, 1);
System.out.println(s11);
String arr1=cu.getRowCount(0);
System.out.println(arr1);
System.out.println(cu.getColumn(0));
*/
Vector v=new Vector();
v.add("user5");
v.add("pwd5");
cu.insertRow(v);
//cu.deleteRow(2);
cu.printAll(); }
}

java csv 文件 操作类的更多相关文章

  1. java的文件操作类File

    java.io.File类,是java获取文件/文件夹的所有属性,和完成所有相关操作的类 例子: package test.file.IO; import java.io.*; public clas ...

  2. java FileUtil(文件操作类)

    package tools; import java.io.BufferedReader; import java.io.File; import java.io.FileInputStream; i ...

  3. Java文件操作类效率对比

    前言 众所周知,Java中有多种针对文件的操作类,以面向字节流和字符流可分为两大类,这里以写入为例: 面向字节流的:FileOutputStream 和 BufferedOutputStream 面向 ...

  4. JAVA文件操作类和文件夹的操作代码示例

    JAVA文件操作类和文件夹的操作代码实例,包括读取文本文件内容, 新建目录,多级目录创建,新建文件,有编码方式的文件创建, 删除文件,删除文件夹,删除指定文件夹下所有文件, 复制单个文件,复制整个文件 ...

  5. 一个封装好的CSV文件操作C#类代码

    using System.Data; using System.IO; namespace DotNet.Utilities { /// <summary> /// CSV文件转换类 // ...

  6. C# 文件操作类大全

      C# 文件操作类大全 时间:2015-01-31 16:04:20      阅读:1724      评论:0      收藏:0      [点我收藏+] 标签: 1.创建文件夹 //usin ...

  7. android 文件操作类简易总结

    android 文件操作类(参考链接) http://www.cnblogs.com/menlsh/archive/2013/04/02/2997084.html package com.androi ...

  8. java中文件操作《一》

    在日常的开发中我们经常会碰到对文件的操作,在java中对文件的操作都在java.io包下,这个包下的类有File.inputStream.outputStream.FileInputStream.Fi ...

  9. 【转载】 C#工具类:Csv文件转换类

    CSV是逗号分隔值格式的文件,其文件以纯文本形式存储表格数据(数字和文本).CSV文件由任意数目的记录组成,记录间以某种换行符分隔:每条记录由字段组成,字段间的分隔符是其它字符或字符串,最常见的是逗号 ...

随机推荐

  1. Dictionary<string, string> 排序

    .net framework 2.0 版 Dictionary<string, string> collection = new Dictionary<string, string& ...

  2. hbase 单机安装问题

    报zookeeper exception not found I fixed this by editing the file "/usr/local/hbase-0.94.1/conf/h ...

  3. Delphi 2010下载+完美破解

    点击链接进入http://altd.embarcadero.com/download/RADStudio2010/delphicbuilder_2010_3615_win.isoRAD Studio/ ...

  4. 51nod 1244 莫比乌斯函数之和(杜教筛)

    [题目链接] http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1244 [题目大意] 计算莫比乌斯函数的区段和 [题解] 利 ...

  5. C#实现 ffmpeg视频转码、播放

    近来公司项目要求实现全景相机的视频截取,但是截取的视频需求转码上传.经过研究采用ffmpeg转码,奉上一个详细介绍的博文: 最简单的基于FFMPEG的转码程序 主要是转码的操作过程,能够实现了从相机获 ...

  6. javascript - Show mouse cursor in phantom.js - Stack Overflow

    javascript - Show mouse cursor in phantom.js - Stack Overflow Show mouse cursor in phantom.js

  7. Java Native Interface Specification(JNI)

    Java Native Interface Specification(JNI) 使用场景: 需要的功能,标准的java不能提供 有了一个用其他的语言写好的工具包,希望用java去访问它 当需要高性能 ...

  8. UI基础:UILabel.UIFont

    UILabel:标签 继承自UIView ,在UIView基础上扩充了显示文本的功能.(文本框) UILabel的使用步骤 1.创建控件 UILabel *aLabel=[[UILabel alloc ...

  9. Linux下PHP与普通C程序通信

    Linux下的普通C程序之前可以使用FIFO(有名管道来进行进程间通信,因为这个管道以一个文件的形式存在于文件系统上,因此只要能读写这个文件就可以实现进程间通信. 首先使用mkfifo命令有文件系统上 ...

  10. linux线程间同步方式汇总

    抽空做了下linux所有线程间同步方式的汇总(原生的),包含以下几个: 1, mutex 2, condition variable 3, reader-writer lock 4, spin loc ...