Package jxl.read.biff

Examples of jxl.read.biff.Record


  /**
   * Dumps out the contents of the excel file
   */
  private void dump() throws IOException
  {
    Record r = null;
    boolean cont = true;
    while (reader.hasNext() && cont)
    {
      r = reader.next();
      cont = writeRecord(r);
View Full Code Here


  /**
   * Dumps out the contents of the excel file
   */
  private void display(WorkbookSettings ws) throws IOException
  {
    Record r = null;
    boolean found = false;
    while (reader.hasNext() && !found)
    {
      r = reader.next();
      if (r.getType() == Type.WRITEACCESS)
      {
        found = true;
      }
    }

    if (!found)
    {
      System.err.println("Warning:  could not find write access record");
      return;
    }

    byte[] data = r.getData();

    String s = null;

    s = StringHelper.getString(data, data.length, 0, ws);
   
View Full Code Here

TOP

Related Classes of jxl.read.biff.Record

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.