• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
  • Paul Clapham
  • Liutauras Vilda
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

using package getting compiler error

 
Ranch Hand
Posts: 223
Eclipse IDE Firefox Browser Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a project at c:\myproject

I have a file name as b.java in c:\myproject

I have a sub-directory named as com\sski\ in c:\myproject

In that subdirectory there is a file a.java (package of a.java is com.sski) which is using class b.

I have compiled b.java successfully, But I am unable to compile a.java
I am getting compiler error cannot resolve symbol

Sourece of a.java is as follow

i have even tried using import b;
then i get error as '.' expected

how do i successfully compile a.java, where do i place b.java.
i dont want to put b.java inside any package.
 
Ranch Hand
Posts: 1282
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This might help you
 
Ranch Hand
Posts: 134
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Try to put b.java in the directory of a.java. Namely, put b.java and a.java in the same dicrectory: [c:\myproject\com\sski\]

Now you can compile a.java.

Read more about ClassPath to know the cause of your problem.
 
Let's go to the waterfront with this tiny ad:
Smokeless wood heat with a rocket mass heater
https://woodheat.net
reply
    Bookmark Topic Watch Topic
  • New Topic