All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.kaka.numerical.TextParser Maven / Gradle / Ivy

The newest version!
package com.kaka.numerical;

/**
 * excel文件复制成的制表符分割的txt文件数据行解析器
 *
 * @author zkpursuit
 */
public class TextParser extends Parser {

    private TextAnalyzer analyzer;

    /**
     * 将每行数据序列化为对象
     *
     * @param        序列化的目标对象类型
     * @param lineDatas 一行数据
     * @param titles    列名集合
     * @param infoClass 序列化的目标对象Class
     * @return 序列化后的目标对象
     * @throws Exception 解析异常
     */
    public  T doParse(String[] lineDatas, String[] titles, Class infoClass) throws Exception {
        if (analyzer == null) {
            analyzer = new TextAnalyzer();
        }
        analyzer.setSourceData(new String[][]{lineDatas, titles});
        return this.doParse(infoClass, analyzer);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy