欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

woss项目

程序员文章站 2024-03-23 23:25:04
...

读取文件并分割文件内容:

在这里插入代码片

package com.woss;

import java.io.;
import java.util.
;

public class RawFileParse {

public static void main(String[] args) throws IOException {
    RawFileParse rfp = new RawFileParse();
    rfp.parse("D:\\radwtmp");
}
//将文件路径以参数的形式提供
//使得程序流通
public List<woss> parse(String path) throws IOException {
    //读取文件中每一行数据
    //用java中的类表示实际的物理意义上的
    File file = new File (path);
    //
    //
    //使用字节流读取原始文件
    FileInputStream fis = new FileInputStream(file);
    //
    InputStreamReader isr = new InputStreamReader(fis);
    BufferedReader br =  new BufferedReader(isr);
    //简便方法
    //BufferedReader reader = new BufferedReader(nwe FileReader (file));
    //从字符
    //
    //定义map集合
    Map<String,woss>map = new HashMap<>();
    List<woss> list = new ArrayList<>();

    String line = null;
    while((line=br.readLine()
相关标签: woss需求