Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
|
04-18-2002, 02:25 PM
|
#1
|
Member
Registered: Mar 2002
Location: California, USA
Posts: 41
Rep:
|
Java can't find package, but PATH set correctly (j2se1.4.0, java.util.regex package)
Hi. The Java 2 SDK includes a package java.util.regex. I'm trying to use it like this:
import java.util.regex.*;
Pattern p = Pattern.compile("abc");
But the compiler returns the error "Class not found."
Both my PATH and CLASSPATH include
/usr/local/j2sdk1.4.0/
/usr/local/j2sdk1.4.0/bin
/usr/local/j2sdk1.4.0/lib
I would be grateful for any help with this.
Thanks!
Ethan
|
|
|
04-18-2002, 06:02 PM
|
#2
|
Member
Registered: Mar 2002
Location: California, USA
Posts: 41
Original Poster
Rep:
|
Problem solved. Turned out the kaffe compiler was installed on the system. Thanks to a suggestion on the Java Developer Connection forums, used find and rpm commands to discover it. Uninstalled it. Now the intended Java compiler is used.
Ethan
|
|
|
04-18-2002, 06:03 PM
|
#3
|
Member
Registered: Feb 2002
Location: Mission Viejo, California, USA
Distribution: Gentoo
Posts: 707
Rep:
|
You should only need the java "bin" directory in your PATH and thats it. No CLASSPATH or anything else required.
In the future you can check your java version like this:
java -version
This could also help:
which java
Last edited by zmedico; 04-18-2002 at 06:29 PM.
|
|
|
04-18-2002, 07:02 PM
|
#4
|
Member
Registered: Mar 2002
Location: California, USA
Posts: 41
Original Poster
Rep:
|
Zemedico, thanks!
Ethan
|
|
|
02-05-2004, 08:45 PM
|
#5
|
LQ Newbie
Registered: Sep 2003
Posts: 1
Rep:
|
Ethan, can you tell me what you did to resolve your problem? Got any links that spell out the problem and fix? I seem to be having similar/same problem.
My compiler also craps out when using assertions too. Any idea on this one?
|
|
|
02-06-2004, 10:55 PM
|
#6
|
Member
Registered: Aug 2003
Location: Planet Earth
Distribution: Linux Mint
Posts: 216
Rep:
|
Quote:
Originally posted by jkk21
My compiler also craps out when using assertions too. Any idea on this one?
|
Sounds like you didn't use the "-source 1.4" option to javac. From the Sun web site:
Quote:
Unless you specifically request source mode 1.4 with the -source 1.4 flag, the compiler operates in source mode 1.3. If you forget to use this this flag, programs that use the new assert statement will not compile. Having the compiler use the old semantics as its default behavior (that is, allowing assert to be used as an identifier) was done for maximal source compatibility. Source mode 1.3 is likely to be phased out over time.
|
Check it out at http://java.sun.com/j2se/1.4.1/docs/...#compatibility
|
|
|
All times are GMT -5. The time now is 05:54 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|