Callnotfoundexception

Discussion in 'Java' started by dsumaharjan, May 6, 2012.

  1. dsumaharjan

    dsumaharjan New Member

    Joined:
    May 6, 2012
    Messages:
    1
    Likes Received:
    0
    Trophy Points:
    0
    hi Dear,


    import org.apache.poi.hssf.usermodel.HSSFCell;
    import org.apache.poi.hssf.usermodel.HSSFRow;
    import org.apache.poi.hssf.usermodel.HSSFSheet;
    import org.apache.poi.hssf.usermodel.HSSFWorkbook;


    public void ReadXL(String Path) throws Exception
    {
    FileInputStream myStream=null;

    System.out.println("InReadxl");
    File xlFile = new File(Path);

    myStream = new FileInputStream(xlFile);
    HSSFWorkbook myWB = new HSSFWorkbook(myStream);

    ...........................

    }

    HSSFWorkbook myWB = new HSSFWorkbook(myStream); is creating
    ClassNotFoundException() after adding external jar file
    "poi-3.7-20101029".What might be causing the prolem?Please,let me know
    the soultion of this problem.

    Thanks
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice