CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Jul 2005
    Posts
    27

    package not found error

    sir



    i am a beginner and using the pjx for the first time for manipulating the pdf files.i've downloaded the pj library from http://www.developer.com/java/other/article.php/626501,
    and as instructed i've set the classpath

    but when i compile i am getting error saying that



    package com.etymon.pj.object does not exist

    package com.etymon.pj does not exist



    what could be the problem

    please help me out



    waiting for ur reply



    regards

    santosh

  2. #2
    Join Date
    Jun 2005
    Posts
    33

    Thumbs up Re: package not found error

    First try to understand the usage of Classpath variable.

    It specifies the compiler about the location of the class files which are either directly or indirectly involved in the current program execution.

    Now try doing this..

    First include the downloaded path, where the downloaded class files exist
    second , include .(dot) at the end after the semicolon which refers to ur current working folder.

    Ex:

    c:java> set classpath=c:\com\pack;.;

  3. #3
    Join Date
    Jul 2005
    Posts
    27

    Re: package not found error

    hi

    thanks for the details
    now its working fine


    santosh

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured