473,804 Members | 4,223 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Cannot resolve symbol?

10 New Member
Hi, I'm new to Java...

I've been trying to get one of my professor's examples to work...

He says that the code is fine, but I keep getting 4 "cannot resolve symbol" errors when I try to compile the ShowStudent.jav a file...

The code for the Student class and ShowStudent program are listed below...

PLEASE HELP!!!


Expand|Select|Wrap|Line Numbers
  1. // Student.java
  2. // creates a class to store info about a student
  3.  
  4. class Student
  5. {
  6.     // the private data members
  7.     private int IDnumber;
  8.     private int hours;
  9.     private int points;
  10.  
  11.     // constructor added in last part of project
  12.     Student()
  13.     {
  14.         IDnumber = 77375;
  15.         points = 12;
  16.         hours = 3;
  17.     }
  18.     // end of constructor
  19.  
  20.     // the public get and set methods
  21.     public void setIDnumber(int number)
  22.     {
  23.         IDnumber = number;
  24.     }
  25.  
  26.  
  27.     public int getPoints()
  28.     {
  29.         return points;
  30.     }
  31.  
  32.     // methods to display the fields
  33.     public void showIDnumber()
  34.     {
  35.         System.out.println("ID Number is: " + IDnumber);
  36.     }
  37.  
  38.     public void showHours()
  39.     {
  40.         System.out.println("Credit Hours: " + hours);
  41.     }
  42.  
  43.     public void showPoints()
  44.     {
  45.         System.out.println("Points Earned: " + points);
  46.     }
  47.  
  48.     public double getGradePoint()
  49.     {
  50.         return (double)points / hours;
  51.     }
  52.  
  53. }
  54.  
  55.  
  56.  
  57. // ShowStudent.java
  58. // client to test the Student class
  59.  
  60. class ShowStudent
  61. {
  62.     public static void main (String args[])
  63.     {
  64.         student pupil = new student();
  65.  
  66.  
  67.         pupil.showIDnumber();
  68.         pupil.showPoints();
  69.         pupil.showHours();
  70.         System.out.println("The grade point average of the studnet created by constructor is "
  71.             + pupil.getGradePoint()+"\n\n");
  72.  
  73.         Student s2 = new Student();
  74.         s2.setIDnumber(12345);
  75.         s2.setPoints(66);
  76.         s2.setHours(20);
  77.         s2.showIDnumber();
  78.         s2.showPoints();
  79.         s2.showHours();
  80.         System.out.println("The grade point average of another student is "
  81.             + s2.getGradePoint()+"\n");
  82.  
  83.     }
  84. }
Feb 16 '08
15 6464
Seral1969
10 New Member
I've been compiling the Student.java file first...

I'll try compile ShowStudent.jav a first...

Thanks anyway...
Feb 16 '08 #11
Seral1969
10 New Member
Here's what happens when I compile the files...



02/17/2008 01:13 AM <DIR> .
02/17/2008 01:13 AM <DIR> ..
02/17/2008 01:13 AM 754 ShowStudent.jav a
02/16/2008 06:20 PM 885 Student.java
2 File(s) 1,639 bytes
3 Dir(s) 109,830,705,152 bytes free

C:\Error>javac Student.java

C:\Error>java Student
Exception in thread "main" java.lang.NoCla ssDefFoundError : Student
Caused by: java.lang.Class NotFoundExcepti on: Student
at java.net.URLCla ssLoader$1.run( Unknown Source)
at java.security.A ccessController .doPrivileged(N ative Method)
at java.net.URLCla ssLoader.findCl ass(Unknown Source)
at java.lang.Class Loader.loadClas s(Unknown Source)
at sun.misc.Launch er$AppClassLoad er.loadClass(Un known Source)
at java.lang.Class Loader.loadClas s(Unknown Source)
at java.lang.Class Loader.loadClas sInternal(Unkno wn Source)

C:\Error>javac ShowStudent.jav a
ShowStudent.jav a:8: cannot find symbol
symbol : class Student
location: class ShowStudent
Student pupil = new Student();// 2 cannot resolve sybmol... points to 'S' in Student
^
ShowStudent.jav a:8: cannot find symbol
symbol : class Student
location: class ShowStudent
Student pupil = new Student();// 2 cannot resolve sybmol... points to 'S' in Student
^
ShowStudent.jav a:17: cannot find symbol
symbol : class Student
location: class ShowStudent
Student s2 = new Student();// 2 cannot resolve sybmol points to 'S in Student
^
ShowStudent.jav a:17: cannot find symbol
symbol : class Student
location: class ShowStudent
Student s2 = new Student();// 2 cannot resolve sybmol points to 'S in Student
^
4 errors

C:\Error>java ShowStudent
Exception in thread "main" java.lang.NoCla ssDefFoundError : ShowStudent
Caused by: java.lang.Class NotFoundExcepti on: ShowStudent
at java.net.URLCla ssLoader$1.run( Unknown Source)
at java.security.A ccessController .doPrivileged(N ative Method)
at java.net.URLCla ssLoader.findCl ass(Unknown Source)
at java.lang.Class Loader.loadClas s(Unknown Source)
at sun.misc.Launch er$AppClassLoad er.loadClass(Un known Source)
at java.lang.Class Loader.loadClas s(Unknown Source)
at java.lang.Class Loader.loadClas sInternal(Unkno wn Source)

C:\Error>
Feb 17 '08 #12
Laharl
849 Recognized Expert Contributor
Looks to me like this folder isn't in your classpath.
Feb 17 '08 #13
gaya3
184 New Member
Hi, I'm new to Java...

I've been trying to get one of my professor's examples to work...

He says that the code is fine, but I keep getting 4 "cannot resolve symbol" errors when I try to compile the ShowStudent.jav a file...

The code for the Student class and ShowStudent program are listed below...

PLEASE HELP!!!


Expand|Select|Wrap|Line Numbers
  1. // Student.java
  2. // creates a class to store info about a student
  3.  
  4. class Student
  5. {
  6.     // the private data members
  7.     private int IDnumber;
  8.     private int hours;
  9.     private int points;
  10.  
  11.     // constructor added in last part of project
  12.     Student()
  13.     {
  14.         IDnumber = 77375;
  15.         points = 12;
  16.         hours = 3;
  17.     }
  18.     // end of constructor
  19.  
  20.     // the public get and set methods
  21.     public void setIDnumber(int number)
  22.     {
  23.         IDnumber = number;
  24.     }
  25.  
  26.  
  27.     public int getPoints()
  28.     {
  29.         return points;
  30.     }
  31.  
  32.     // methods to display the fields
  33.     public void showIDnumber()
  34.     {
  35.         System.out.println("ID Number is: " + IDnumber);
  36.     }
  37.  
  38.     public void showHours()
  39.     {
  40.         System.out.println("Credit Hours: " + hours);
  41.     }
  42.  
  43.     public void showPoints()
  44.     {
  45.         System.out.println("Points Earned: " + points);
  46.     }
  47.  
  48.     public double getGradePoint()
  49.     {
  50.         return (double)points / hours;
  51.     }
  52.  
  53. }
  54.  
  55.  
  56.  
  57. // ShowStudent.java
  58. // client to test the Student class
  59.  
  60. class ShowStudent
  61. {
  62.     public static void main (String args[])
  63.     {
  64.         student pupil = new student();
  65.  
  66.  
  67.         pupil.showIDnumber();
  68.         pupil.showPoints();
  69.         pupil.showHours();
  70.         System.out.println("The grade point average of the studnet created by constructor is "
  71.             + pupil.getGradePoint()+"\n\n");
  72.  
  73.         Student s2 = new Student();
  74.         s2.setIDnumber(12345);
  75.         s2.setPoints(66);
  76.         s2.setHours(20);
  77.         s2.showIDnumber();
  78.         s2.showPoints();
  79.         s2.showHours();
  80.         System.out.println("The grade point average of another student is "
  81.             + s2.getGradePoint()+"\n");
  82.  
  83.     }
  84. }

Hi,
What i have observed is in"Student" file u dont have setter method for "Points" & "Hours".. but u were trying to set those variable at "ShowStuden t" class..
Even this causes "cannot resolve" problem

-Hamsa
Feb 26 '08 #14
sukatoa
539 Contributor
Hi, I'm new to Java...

I've been trying to get one of my professor's examples to work...

He says that the code is fine, but I keep getting 4 "cannot resolve symbol" errors when I try to compile the ShowStudent.jav a file...

The code for the Student class and ShowStudent program are listed below...

PLEASE HELP!!!

Are you sure of your code?

Maybe you forgot this,

at line 62, student must be Student
No such method as setPoints() in Student class
No such method as setHour() in Student class

make the class where the main method is to public...

tell us the result?
Feb 26 '08 #15
JosAH
11,448 Recognized Expert MVP
This is a simple classpath problem. The javac compiler and the java virtual machine
don't know where to look for the class file Student after it started running the
other class. Simply add the classpath variable to them like this:

Expand|Select|Wrap|Line Numbers
  1. javac -cp . *.java 
  2. ...
  3. java -cp . ShowStudent
  4.  
The first line compiles both java files and sets the classpath to the current
directory (it reads: minus-c-p-space-dot). The last line runs your class given the
same classpath value.

kind regards,

Jos
Feb 26 '08 #16

Sign in to post your reply or Sign up for a free account.

Similar topics

1
27806
by: Java script Dude | last post by:
I am investigating a solution to build all pages sent from my application servlet in UTF-8 encoding. From what I understand, I should be using HttpServletResponse.setCharacterEncoding("UTF-8"). The J2EE API clearly shows that this method is available with superclass ServletResponse but I am getting compile errors using NetBeans 3.6 final. Thanks for your help! Tim
1
24808
by: Tony Johansson | last post by:
Hello! I get compile error when compiling using the command javac from the command terminal window(CMD). I have just two classes which are called HelloWorld.java and Slask.java. I have both classes in the directory called temp and I do cd temp to this directory. Then I do javac HelloWorld.java Now I get the compile error HelloWorld.java:8 cannot resolve symbol
1
4635
by: vsp15584 | last post by:
Hii..i use the coding as below :- import java.applet.applet; import java.awt.*; import com.sun.j3d.utils.applet.mainframe; import com.sun.j3d.utils.universe.*; import com.sun.j3d.utils.geometry.*; import javax.media.j3d.*; import javax.vecmath.*;
3
2358
by: toish | last post by:
I have a program, aaa.java which creates an instance of another class(bbb.java). both java files are in a package entitled 'diss' bbb.java compiles sucessfully aaa.java throws a cannot resolve symbol error when aaa is referenced. aaa.java imports the package diss, as well as being part of it. both files are in the same directory. These files compile sucessfully using Java 1.5, when using Tomcat V.4 the above compilation error is thrown...
3
2384
by: adamrace | last post by:
Hi, i am fairly new to java and have been stuck on this for ages, basically i need to create a new object which gets a list of data from a text file, so i have this import java.io.*; import java.util.*; public class Tester {
3
3194
by: Sindhu Rani | last post by:
i hav created 3 classes in 3 different files. am gettin an error durin compilation. wat shud i do??? C:\s\source>javac -d ..\classes devtestdrive.java devtestdrive.java:5: cannot resolve symbol symbol : class device location: class devtestdrive device d1=new tv(); ^ devtestdrive.java:5: cannot resolve symbol symbol : class tv
0
1821
EntryTeam
by: EntryTeam | last post by:
At the screenshots you can see what libraries I've added to project, and still - those two essential classes are missing! What's wrong? Need your help.
1
2156
by: Charles Sherman | last post by:
public class area { public static void main(Strings args) { int height; int width; int area; int i; int e; for (i=1; i>=11; i++);
0
9706
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9579
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10332
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9150
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7620
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6853
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5651
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4299
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3820
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.