I have JFlex version which is version 1.4.1 and its from http://jflex.de/download.h
The javacup version that I have is from http://www2.cs.tum.edu/pro
Main Topics
Browse All TopicsHi,
I'm having trouble setting up JFlex and JavaCUP on my system at home. Here is my output..
C:\Parcing>java java_cup.Main input.cup
Exception in thread "main" java.lang.NoClassDefFoundE
Caused by: java.lang.ClassNotFoundExc
at java.net.URLClassLoader$1.
at java.security.AccessContro
at java.net.URLClassLoader.fi
at java.lang.ClassLoader.load
at sun.misc.Launcher$AppClass
at java.lang.ClassLoader.load
at java.lang.ClassLoader.load
C:\Parcing>java JFlex.Main input.flex
Exception in thread "main" java.lang.NoClassDefFoundE
Caused by: java.lang.ClassNotFoundExc
at java.net.URLClassLoader$1.
at java.security.AccessContro
at java.net.URLClassLoader.fi
at java.lang.ClassLoader.load
at sun.misc.Launcher$AppClass
at java.lang.ClassLoader.load
at java.lang.ClassLoader.load
C:\Parcing>javac MyParser.java
MyParser.java:1: package java_cup.runtime does not exist
import java_cup.runtime.*;
^
MyParser.java:6: cannot find symbol
symbol : class parser
location: class MyParser
parser parser_obj = null;
^
MyParser.java:8: cannot find symbol
symbol : class parser
location: class MyParser
parser_obj = new parser(new Yylex(System.in));
^
MyParser.java:8: cannot find symbol
symbol : class Yylex
location: class MyParser
parser_obj = new parser(new Yylex(System.in));
^
MyParser.java:12: cannot find symbol
symbol : class parser
location: class MyParser
parser_obj = new parser(new Yylex(reader
));
^
MyParser.java:12: cannot find symbol
symbol : class Yylex
location: class MyParser
parser_obj = new parser(new Yylex(reader
));
^
MyParser.java:20: cannot find symbol
symbol : class Symbol
location: class MyParser
Symbol parse_tree = null;
^
7 errors
any ideas as to how to get this to work properly?
Thanks,
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I have JFlex version which is version 1.4.1 and its from http://jflex.de/download.h
The javacup version that I have is from http://www2.cs.tum.edu/pro
Business Accounts
Answer for Membership
by: CEHJPosted on 2008-03-16 at 09:01:30ID: 21137268
Where did you get the JFlex and JavaCUP jars from and what are they?