当前位置: 首页>>代码示例>>Java>>正文


Java Tool类代码示例

本文整理汇总了Java中org.apache.avro.tool.Tool的典型用法代码示例。如果您正苦于以下问题:Java Tool类的具体用法?Java Tool怎么用?Java Tool使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


Tool类属于org.apache.avro.tool包,在下文中一共展示了Tool类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: generateAvroFile

import org.apache.avro.tool.Tool; //导入依赖的package包/类
private static void generateAvroFile(String schema, String json, String avro, String codec) throws IOException {
    Tool tool = new DataFileWriteTool();
    List<String> args = new ArrayList<String>();
    args.add("--schema-file");
    args.add(schema);
    args.add(json);
    if (codec != null) {
        args.add("--codec");
        args.add(codec);
    }
    try {
        StringBuffer sb = new StringBuffer();
        for (String a : args) {
            sb.append(a);
            sb.append(" ");
        }
        PrintStream out = new PrintStream(avro);
        tool.run(System.in, out, System.err, args);
    } catch (Exception e) {
        LOG.info("Could not generate avro file: " + avro, e);
        throw new IOException();
    }
}
 
开发者ID:sigmoidanalytics,项目名称:spork-streaming,代码行数:24,代码来源:TestAvroStorage.java

示例2: generateRandomTrevniFile

import org.apache.avro.tool.Tool; //导入依赖的package包/类
private static void generateRandomTrevniFile(String schema, String count, String trevni) throws IOException {
    Tool tool = new TrevniCreateRandomTool();
    List<String> args = new ArrayList<String>();
    args.add(schema);
    args.add(count);
    args.add(trevni);
    try {
        tool.run(System.in, System.out, System.err, args);
    } catch (Exception e) {
        LOG.info("Could not generate trevni file: " + trevni, e);
        throw new IOException();
    }
}
 
开发者ID:sigmoidanalytics,项目名称:spork,代码行数:14,代码来源:TestAvroStorage.java

示例3: convertTrevniToJsonFile

import org.apache.avro.tool.Tool; //导入依赖的package包/类
private static void convertTrevniToJsonFile(String schema, String trevni, String json) throws IOException {
    Tool tool = new TrevniToJsonTool();
    List<String> args = new ArrayList<String>();
    args.add(trevni);
    try {
        PrintStream out = new PrintStream(json);
        tool.run(System.in, out, System.err, args);
    } catch (Exception e) {
        LOG.info("Could not generate json file: " + json, e);
        throw new IOException();
    }
}
 
开发者ID:sigmoidanalytics,项目名称:spork-streaming,代码行数:13,代码来源:TestAvroStorage.java


注:本文中的org.apache.avro.tool.Tool类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。