I am trying to parse out a mm/dd/yyyy formatted date into separate fields, but I get the following error when I try to compile:

non-static method next() cannot be referenced from a static context

What could be causing the error?

import java.util.Scanner;

public class Problem39
{

    public static void main(String [ ] args)
    {

    boolean isLeapYear =false;
    int maxDay=0;
    String stringDate;

    System.out.println("Enter the date in mm/dd/yyyy format. ");  //user input
    Scanner keyboard = new Scanner(System.in);                    //read input
    String date=Scanner.next();                                //store input
    String temp=date.split("/");  //parse date
    int month=IntegerParseInt(temp[1]);
    int day=IntegerParseInt(temp[0]);
    int year=IntegerParseInt(temp[2]);
link|improve this question
It could be because next() is a Scanner instance method, and you're not calling it on a scanner instance. The parsing is also incorrect. – Dave Newton Feb 9 at 1:32
you should use keyboard.next(), not Scanner.next. Sorry have to downvote this. – Petro Semeniuk Feb 9 at 1:33
2  
@Petro, why would the OP's confusion merit a downvote? Isn't that why SO exists, to clear up such common confusions? – kaveman Feb 9 at 1:34
also change IntegerParseInt to Integer.parseInt – RanRag Feb 9 at 1:37
@kaveman, it's just that difference between static/instance method is very basic java knowledge. Also there are three questions on stackoverflow "why non-static method cannot be referenced from a static context" answered already. – Petro Semeniuk Feb 9 at 2:44
feedback

5 Answers

Change:

String date = Scanner.next();  

to:

String date = keyboard.next();  

next() is an instance method, so you must call it on an instance of the class Scanner.

Also, change:

String temp = date.split("/"); 

to:

String[] temp = date.split("/"); 

the split() method returns a string array.

link|improve this answer
the only answer to actually explain the answer! – kaveman Feb 9 at 1:36
Now it is complaining about incompatible types on the next line String temp=date.split("/"); //parse date – Ian Conner Feb 9 at 1:48
feedback

You mean

String date = keyboard.next();

instead of

String date = Scanner.next();
link|improve this answer
feedback

Change the code:

String date=Scanner.next();

to:

String date = keyboard.next();
link|improve this answer
feedback

It is Integer.parseInt() not IntegerParseInt.

Also change to this

String date = keyboard.next();
link|improve this answer
feedback

It should be keyboard.next() not Scanner.next().

link|improve this answer
thanks for all the help fellas – Ian Conner Feb 9 at 2:39
1  
Hi Ian and welcome. You shouldn't say (write) thanks literally, but upvote the answer (the Δ beneath the anwer) and accept the best one (with the √). This gives the answerer reputation and avoids lengthy dialogs ("Thanks"/"You're welcome"/...). – user unknown Feb 9 at 2:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.