java—通过ant clean dist执行jar—以不同的名称出现?

rggaifut  于 2021-06-02  发布在  Hadoop
关注(0)|答案(1)|浏览(390)

我正在使用hadoop,需要从/src文件中的所有类创建一个.jar文件。每次我尝试创建它时,它都会出现在wordcount.jar下,而不是twitter.jar下,我在下面的代码中已经说明了这一点:

import java.util.Arrays;

import org.apache.commons.lang.StringUtils;
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.NullWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;

public class Twitter {
    public static void runJob(String[] input, String output) throws Exception {
        Configuration conf = new Configuration();
        Job job = new Job(conf);
        job.setJarByClass(Twitter.class);
        job.setReducerClass(TwitterReducer.class);
        job.setMapperClass(TwitterMapper.class);

        job.setOutputKeyClass(Text.class);
        job.setOutputValueClass(NullWritable.class);
        job.setMapOutputKeyClass(Text.class);
        job.setMapOutputValueClass(NullWritable.class);
        Path outputPath = new Path(output);
        FileInputFormat.setInputPaths(job, StringUtils.join(input, ","));
        FileOutputFormat.setOutputPath(job, outputPath);
        outputPath.getFileSystem(conf).delete(outputPath, true);
        job.waitForCompletion(true);
        }
    public static void main(String[] args) throws Exception {
        runJob(Arrays.copyOfRange(args, 0, args.length - 1), args[args.length - 1]);
    }
}

所以我不确定是什么错了?jar本身中的文件与/src文件夹中的文件完全相同。

j2datikz

j2datikz1#

jar文件的名称与其中类的名称无关。您需要检查ant构建文件,特别是创建jar的目标。创建jar文件的ant任务通常是 jar 任务和文件名可以通过 destfile 属性。

相关问题