简体   繁体   English

由于“无法找到或加载主类”而无法运行jar文件

[英]Cannot run jar file because of “Could not find or load main class”

I have a test dir, which contains 3 folders: 我有一个测试目录,其中包含3个文件夹:

--META-INF:
  one file MANIFEST.MF in the dir:
  MANIFEST.MF:
      anifest-Version: 1.0
      Created-By: 1.7.0_04-ea (Oracle Corporation)
      Class-Path: lib/*; .
      Main-Class: Setup.WordCount
-- lib:
   all the external jars I need for the project
-- Setup:
   3 files in the dir:
   WordCount$IntSumReducer.clas
   WordCount$TokenizerMapper.class
   WordCount.class

I create a jar file using the command 我使用以下命令创建一个jar文件

jar cmf test.jar test/META-INF/MANIFEST.MF test/Setup test/lib

but when I try to run the test.jar , an error reported: 但是当我尝试运行test.jar ,报告了一个错误:

Error: Could not find or load main class Setup.WordCount

I've tried to debug the prob for the whole day, still no idea! 我已经整天尝试调试问题了,还是不知道!

WordCount.java : WordCount.java

package Setup;

import java.io.IOException;
import java.util.StringTokenizer;

import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.IntWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.Mapper;
import org.apache.hadoop.mapreduce.Reducer;
import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
import org.apache.hadoop.util.GenericOptionsParser;

public class WordCount {

  public static class TokenizerMapper
       extends Mapper<Object, Text, Text, IntWritable>{

    private final static IntWritable one = new IntWritable(1);
    private Text word = new Text();

    public void map(Object key, Text value, Context context
                    ) throws IOException, InterruptedException {
      StringTokenizer itr = new StringTokenizer(value.toString());
      while (itr.hasMoreTokens()) {
        word.set(itr.nextToken());
        context.write(word, one);
      }
    }
  }

  public static class IntSumReducer
       extends Reducer<Text,IntWritable,Text,IntWritable> {
    private IntWritable result = new IntWritable();

    public void reduce(Text key, Iterable<IntWritable> values,
                       Context context
                       ) throws IOException, InterruptedException {
      int sum = 0;
      for (IntWritable val : values) {
        sum += val.get();
      }
      result.set(sum);
      context.write(key, result);
    }
  }

  public static void main(String[] args) throws Exception {
    Configuration conf = new Configuration();
    String[] otherArgs = new GenericOptionsParser(conf, args).getRemainingArgs();
    if (otherArgs.length != 2) {
      System.err.println("Usage: wordcount <in> <out>");
      System.exit(2);
    }
    Job job = new Job(conf, "word count");
    job.setJarByClass(WordCount.class);
    job.setMapperClass(TokenizerMapper.class);
    job.setCombinerClass(IntSumReducer.class);
    job.setReducerClass(IntSumReducer.class);
    job.setOutputKeyClass(Text.class);
    job.setOutputValueClass(IntWritable.class);
    FileInputFormat.addInputPath(job, new Path(otherArgs[0]));
    FileOutputFormat.setOutputPath(job, new Path(otherArgs[1]));
    System.exit(job.waitForCompletion(true) ? 0 : 1);
  }
}

The code is exactly the same as hadoop/example/WordCount , I'm trying to implementing hadoop example on my local dev environment. 代码与hadoop/example/WordCount完全相同,我试图在本地开发环境中实现hadoop示例。

Your jar statement is slightly off. 您的jar语句略有偏离。 Try this: 尝试这个:

jar -cfm test.jar test/META-INF/MANIFEST.MF -C test Setup -C test lib

Your command puts test/Setup/WordCount.class in the jar, which is why Java cannot find Setup/WordCount.class 您的命令将test / Setup / WordCount.class放入jar中,这就是Java无法找到Setup / WordCount.class的原因

You are also missing the package statement in the code you posted: 您还缺少发布的代码中的package语句:

package Setup;

specify package in code - and than use it in start command/ eg: 在代码中指定包-然后在启动命令/中使用它,例如:

hadoop jar mywordcount.jar hadoop.mytest.WordCount input22/input /home/training/output

where hadoop.mytest.WordCount - is your package 在哪里hadoop.mytest.WordCount是您的软件包

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 无法运行jar文件:找不到或加载主类Hello - Cannot run jar file: Could not find or load main class Hello 找不到或加载主类-我无法运行从Ant创建的.jar文件 - Could not find or load main class- I cannot run my .jar file created from Ant 无法使用 Jar 文件找到或加载主 class - Could not find or load main class with a Jar File 运行带有“错误:无法找到或加载主类”的 jar - run jar with `Error: Could not find or load main class` eclipse无法运行主程序“找不到或加载主类错误” - eclipse cannot run main “error could not find or load main class” 无法运行 jar 文件,出现无法找到或加载主类(Maven 项目)的错误 - Unable to run jar file, getting error as Could not find or load main class (Maven Project) 无法运行jar文件,出现“错误:找不到或加载主类com.trident.SchedulerMain” - Unable to run jar file getting “Error: Could not find or load main class com.trident.SchedulerMain” 在 Windows 中的 run.batch 中运行 jar 文件,我无法找到或加载主类 - Running a jar file in run.batch in windows i am getting could not find or load the main class 无法弄清楚如何运行我的jar文件“找不到或加载主类” - Can't figure out how to run my jar file “could not find or load main class” 由于无法加载主类错误,无法运行 JAR 文件 - Cannot run JAR file due to cannot load main class error
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM