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



我正在使用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文件夹中的文件完全相同。

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

相关内容

  • 没有找到相关文章

最新更新