Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

import jar file

Status
Not open for further replies.

patricktwo

Programmer
Jul 6, 2002
10
0
0
US
I am trying to import class files from a jar file. The code is below: import java.io.Serializable;
import java.util.HashMap;
import de.laures.cewolf.DatasetProducer;
import de.laures.cewolf.DatasetProduceException;
import com.jrefinery.data.DefaultPieDataset;
import sun.jdbc.rowset.CachedRowSet; public class PieChartDatasetProducer extends CewolfDatasetProducer When I try to compile this I get an error message "cannot access DatasetProduceException" I am using JBuilder to compile this.
 
Have you registered the jar in quesion as a library within JBuilder? This library would then be added to the project path allowing JBuilder to locate the jar's classes.

Tim
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top