| Author |
Simple Package Problem.....
|
Steve Jensen
Ranch Hand
Joined: Sep 23, 2002
Posts: 126
|
|
Folks, my wotking directory is C:\java All my programs are held in sub-directories inside this folder. For ther code listed below, I created a folder called MyPack, ie c:\java\MyPack The code below:- Gives me the following error when I compile it:- AccountBalance.java": Package C:\Java\MyPack\AccountBalance.java stated in source MyPack does not match directory C:\Java\MyPack\AccountBalance.java. at line 2, column 9 Can anybody explain why? AccountBalance.java is in the directory structire c:\java\MyPack Any help is appreciated. Thanks in advance
|
John Bonham was stronger, but Keith Moon was faster.
|
 |
Paul Santa Maria
Ranch Hand
Joined: Feb 24, 2004
Posts: 236
|
|
Uh - did you try saying "public class AccountBalance"? There might be other problems, but that's the first thing I'd try... 'Hope that helps .. PSM
|
Paul M. Santa Maria, SCJP
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12928
|
|
You should compile this from the directory C:\Java: C:\> cd Java C:\Java> javac MyPack\AccountBalance.java
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
 |
|
|
subject: Simple Package Problem.....
|
|
|