I have one module developed under java 5.0

package mypack;

class MessageParser {
    public MessageParser(String s) {
    ......
    }
}

I have another module developed under java 6.0

import mypack;
......
String str = someString;
MessageParser parser = new MessageParser(str);
......

But I got the error "cannot find symbol constructor MessageParser(java.lang.String)"

BTW: the IDE I am using is intellij idea

Could anyone tell me why and how to get it work?

link|improve this question

Is the java 5 code only available as a jar/class file, or can you recompile it under java 6? – Jim Garrison Feb 3 '11 at 21:19
feedback

3 Answers

up vote 4 down vote accepted

This has little to do with Java5-6.

Probably you have a different version in your classpath.

Double check what jar/file you're using in your Java 6 code, and triple check it correspond to the one you're seeing in you Java 5 version. Mostlikely you're seeing an old version which didn't have the constructor.

link|improve this answer
you are very good – Leon Feb 3 '11 at 21:25
Does it mean that worked? :-/ ?? – OscarRyz Feb 3 '11 at 21:44
feedback

This problem has nothing to to with java version, but I think you're are trying to compile second class agains a old version of first class, which does not contain the constructor with one string arg.

link|improve this answer
you are good too. – Leon Feb 3 '11 at 21:24
feedback

This has nothing to do with the Java version, but with the way you're trying to connect your "modules" - how are these defined? As JAR files? Are you using an IDE?

Well, first of all, import mypack; will not import any classes in mypack. You either have to list the class as well or use a wildcard:

import mypack.MessageParser;

or

import mypack.*;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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