当前位置: 首页 > 知识库问答 >
问题:

java.lang.运行时间异常:java.lang.

吴展
2023-03-14

我得到java.lang.NoSuch方法例外请帮助我在这...

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.HashMap;

import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.conf.Configured;
import org.apache.hadoop.filecache.DistributedCache;
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.io.LongWritable;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.mapreduce.Job;
import org.apache.hadoop.mapreduce.Mapper;
import org.apache.hadoop.mapreduce.lib.input.FileInputFormat;
import org.apache.hadoop.mapreduce.lib.input.TextInputFormat;
import org.apache.hadoop.mapreduce.lib.output.FileOutputFormat;
import org.apache.hadoop.mapreduce.lib.output.TextOutputFormat;
import org.apache.hadoop.util.Tool;
import org.apache.hadoop.util.ToolRunner;


public class Placeholder extends Configured implements Tool  
{
    private static Path[] filepath;
    private static String filename;
    private static String[] calendartablecolumn;
    private static BufferedReader br;
    private static String placeholder;
    private static String output;
    private static HashMap<String,String> map = new HashMap<String,String>();

    public int run(String[] args) throws Exception {

        String placeholdername = args[3];
        String stratposition = args[4];
        String length = args[5];
        String category = args[6];
        String calendarid = args[7];


        Configuration conf = new Configuration();
        conf.set("placeholdername", placeholdername);
        conf.set("stratposition", stratposition);
        conf.set("length", length);
        conf.set("category", category);
        conf.set("calendarid", calendarid);


        Job job = Job.getInstance(conf, "Placeholder");
        DistributedCache.addCacheFile(new Path(args[2]).toUri(), getConf());

        job.setJarByClass(Placeholder.class);
        job.setMapperClass(PlaceholderMapper.class);
        job.setNumReduceTasks(0);

        job.setOutputKeyClass(Text.class);
        job.setOutputValueClass(Text.class);

        job.setInputFormatClass(TextInputFormat.class);
        job.setOutputFormatClass(TextOutputFormat.class);

        FileInputFormat.addInputPath(job, new Path(args[0]));
        FileOutputFormat.setOutputPath(job, new Path(args[1]));


        return job.waitForCompletion(true) ? 0 : 1;

    }


    public static void main(String[] args) throws Exception {

        int res = ToolRunner.run(new Configuration(), new Placeholder(), args);     
        System.exit(res);
    }

    public class PlaceholderMapper extends Mapper<LongWritable,Text,Text,Text>
    {
        protected void setup(Context context) throws IOException,InterruptedException 
        {
            try {

                filepath = DistributedCache.getLocalCacheFiles(getConf());
                filename = filepath[0].getName().toString();
                br = new BufferedReader(new FileReader(filepath[0].toString()));
                String line = null;
                while ((line = br.readLine()) != null) 
                {
                    calendartablecolumn = line.split("\\,");
                }
            } catch (Exception e) {

            }
        }

        public void map(LongWritable keys, Text value, Context context) throws IOException, InterruptedException 
        {
            String str_placeholdername = context.getConfiguration().get("placeholdername");

            String str_stratposition = context.getConfiguration().get("stratposition");
            int int_stratposition = Integer.parseInt(str_stratposition);

            String str_length = context.getConfiguration().get("length");
            int int_length = Integer.parseInt(str_length);

            String str_category = context.getConfiguration().get("category");

            String str_calendarid = context.getConfiguration().get("calendarid");
            int int_calendarid = Integer.parseInt(str_calendarid);

            if (str_category != null)
            {
                if (str_category.equalsIgnoreCase("filename"))
                {
                    placeholder = filename.substring((int_stratposition-1),(int_length-1));

                }else if (str_category.equalsIgnoreCase("startdate"))
                {
                    map.put(calendartablecolumn[0].trim(),calendartablecolumn[3].trim());
                    placeholder = map.get(int_calendarid);


                }else if (str_category.equalsIgnoreCase("enddate"))
                {
                    map.put(calendartablecolumn[0].trim(),calendartablecolumn[4].trim());
                    placeholder = map.get(int_calendarid);

                }else if (str_category.equalsIgnoreCase("currentdate"))
                {
                    DateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
                    Date date = new Date();
                    String currentdate = (dateFormat.format(date)).toString();
                    placeholder = currentdate.substring((int_stratposition-1),(int_length-1));

                }else if (str_category.equalsIgnoreCase("isdailydata"))
                {

                }

                output = value+","+placeholder;
            }else
            {
                String line =  value.toString();
                output = line.substring((int_stratposition-1),(int_length-1));
            }

            context.write(null,new Text (output));
        }
    }
}

这就是我得到的错误-

错误:java.lang.运行时异常:java.lang.NoSuchmethod异常:com.nielsen.GRFE.processor.mapreduce.占位符$PlaceholderMapper.()在org.apache.hadoop.util.Reflse Utils.new实例(Reflse Utils.java:131)在org.apache.hadoop.mapred.MapTask.runNewMapper(MapTask.java:745)在org.apache.hadoop.mapred.MapTask.run(MapTask.java:341)在org.apache.hadoop.mapred.YarnChild2.run(YarnChild.java:163)在java.security.AccessController.do特权(本地方法)在javax.security.auth.Subject.doAs(科目. java: 415)在org. apache. hadoop. security。UserGroupInformation. doAs(UserGroupInformation. java: 1671)at org. apache. hadoop. mapred.YarnChild. main(YarnChild. java: 158)引起:java. lang.异常:com. nielsen.GRFE.处理器。占位符$PlaceholderMapper.()at java. lang.在java. lang.java: 2053)在org. apache. hadoop. util.java: 125)

共有1个答案

百里俭
2023-03-14

我认为问题在于你的PlaceholderMapper类不是静态的,试着让它成为公共静态的

 类似资料:
  • 我知道以前有人问过这个问题,我也读过所有的解决方案,但我的情况有点奇怪,我一直在开发人员帐户上得到崩溃报告,如下所示: JAVAlang.RuntimeException:在android上。硬件照相机android上的本机设置参数(本机方法:0)。硬件照相机com上的setParameters(Camera.java:2080)。XXXXXXXXX。果心xxxxxxxx。xxxxxxx。surf

  • 在我的项目中,我有这样一个枚举: 我有这个代码: 我有个例外 myMap由数据库中的数据填充,知道它是SQL Server数据库,并且从数据库返回的myKey在数据库中是tinyint类型。 你能告诉我我做错了什么吗?谢谢 当做

  • 声明运行时异常的方法的指导原则是什么? 假设我调用一个抛出的第三方例程。该例程能够抛出而不声明它这样做是否允许/标准/可接受? 和往常一样,我对我的问题引起的困惑感到惊讶:-D这可能是因为我很困惑。 在下面的代码中,可调用的是一个lambda,它发出一个,这会抛出SQLException。callable.call抛出Exception。 我由此推测,程序员希望抛出一个SQLException。然

  • 问题内容: 运行单元测试时,我遇到了jar hell的问题。 我遇到了上述错误,并通过删除了不必要的jar文件解决了这些错误。 但是我面临以下两个jar的问题,即tomcat-embed-core-8.0.36.jar和hibernate- jpa-2.1-api-1.0.0.Final.jar。这两者之间有一个共同的类,我需要两个jar文件,任何人都可以向我解释如何解决此问题。我都需要jar文件

  • 我试图学习Java FX,所以我使用了一些Oracle Eample代码,但当我试图在Netbean IDE中运行它时,它给了我一个运行时错误。下面是一段代码: 而这是个例外。 Edit:好的,基于rob的回答,我添加了我在示例中遗漏的扩展,现在在我尝试扩展代码后,它甚至给出了更多的异常。下面是该异常的新代码和日志。 这是异常日志: