读取csv.txt文件

package servlet;   
  
import java.io.BufferedReader;   
import java.io.File;   
import java.io.FileInputStream;   
import java.io.FileNotFoundException;   
import java.io.IOException;   
import java.io.InputStreamReader;   
import java.io.UnsupportedEncodingException;   
import java.util.ArrayList;   
import java.util.List;   
 
  
public class Test {   
  
      
       
      
    public static String[] getTxtContent(String path)   
     
        File f = null;   
        String[] a = null;   
           
        try {   
            a = new String[100000];   
               
            f=new File(path);   
               
            InputStreamReader read = new InputStreamReader(new FileInputStream(f), "GBK");   
               
            BufferedReader reader = new BufferedReader(read);   
               
            String line;   
            int i;   
               
            for (i = 0; i < 100000; i++)    
             
                if ((line = reader.readLine()) != null)   
                 
                    a[i] = line;   
                 
             
        } catch (UnsupportedEncodingException e) {   
            e.printStackTrace();   
        } catch (FileNotFoundException e) {   
            e.printStackTrace();   
        } catch (IOException e) {   
            e.printStackTrace();   
         
        return a;   
     
       
      
    public String listTxtByRow1(String path,Integer row)   
     
        String[] s = getTxtContent(path);   
        return "第"+row+"行:"+s[row-1]; 
     
       
    public List listTxtByRow2(String path,Integer start,Integer end)   
     
        List list =new ArrayList();   
        String[] s = getTxtContent(path);   
           
        for(int i = start;i <= end;i++)   
         
            list.add(s[i-1]);   
         
           
        return list;   
     
       
    public static void main(String[] args) {   
  
        Test t = new Test();   
        System.out.println(t.listTxtByRow1("C:/testlog.txt",6));//取出第6行数据   
        System.out.println("==================取出指定行数=====================");   
        List list = t.listTxtByRow2("C:/testlog.txt", 2, 5);//取出2-5行数据   
        for(int i = 0;i
         
            System.out.println(list.get(i));   
                    
    
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值