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

gherkin.GenerateTokens Maven / Gradle / Ivy

package gherkin;

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;

public class GenerateTokens {
    public static void main(String[] args) throws FileNotFoundException, UnsupportedEncodingException {
        TokenFormatterBuilder builder = new TokenFormatterBuilder();
        Parser parser = new Parser<>(builder);
        TokenMatcher matcher = new TokenMatcher();
        for (String fileName : args) {
            InputStreamReader in = new InputStreamReader(new FileInputStream(fileName), "UTF-8");
            String result = parser.parse(in, matcher);
            System.out.print(result);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy