Search:

Type: Posts; User: helloworld922

Search: Search took 0.34 seconds.

  1. Replies
    8
    Views
    2,705

    Re: java. Text problem...

    typo on their part? That's the only thing I can think of unless they have a custom build of Java (could happen, but not likely), in which case it's hopeless unless you can get the same build :P
  2. Replies
    8
    Views
    2,705

    Re: java. Text problem...

    There are many ways. This kind of a problem isn't IDE dependent, though. Java.text is a standard java package, and Java.text.Text is not a standard java class.

    If you don't know if your class has...
  3. Replies
    8
    Views
    2,705

    Re: java. Text problem...

    2 problems:

    Java is case sensitive, and java.text is a package, not a class. So, you need to do something like this:

    import java.text.*; // imports everything in the java.text package
Results 1 to 3 of 3