• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

package not found

 
Ranch Hand
Posts: 39
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi sir
i download autoupdater souce code and we compile through javac but not find
package...the error given below..
------------------------------
Autochecker.java:19: package org.openide.util does not exist
import org.openide.util.NbBundle;
^
Autochecker.java:21: package org.openide.awt does not exist
import org.openide.awt.StatusDisplayer;
^
Autochecker.java:23: package org.openide.filesystems does not exist
import org.openide.filesystems.*;
^
Autochecker.java:32: package Wizard does not exist
Wizard.Validator {
-----------------------------------------------
i want to know where r my package placed.....
plz give ans soon...
 
Java Cowboy
Posts: 16084
88
Android Scala IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You have to put the classes or JAR file that contains the org.openide package and subpackages in the classpath.

Since those are not standard Java API classes, I can't tell you where to find them. Doesn't the documentation or source code you're trying to compile contain more information on where to find those packages?
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic