资源简介

jxl 全称 jexcel,为目前官网最新的稳定版本,里面包括api和源码。适合研究和学习。包括例子,适合初学者和有深入研究意愿的开发人员

资源截图

代码片段和文件信息

/*********************************************************************
*
*      Copyright (C) 2002 Andrew Khan
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not write to the Free Software
* Foundation Inc. 59 Temple Place Suite 330 Boston MA 02111-1307 USA
***************************************************************************/
package jxl.biff.formula;
/**
 * This file is generated by JLex.  Do not alter the contents of this file
 * because changes will be overridden
 */
import jxl.biff.WorkbookMethods;


class Yylex {
private final int YY_BUFFER_SIZE = 512;
private final int YY_F = -1;
private final int YY_NO_STATE = -1;
private final int YY_NOT_ACCEPT = 0;
private final int YY_START = 1;
private final int YY_END = 2;
private final int YY_NO_ANCHOR = 4;
private final int YY_BOL = 65536;
private final int YY_EOF = 65537;

  int getPos() { return yychar ; }

  private boolean emptyString;

  private ExternalSheet externalSheet;
  private WorkbookMethods nametable;
  void setExternalSheet(ExternalSheet es)
  {
    externalSheet = es;
  }
  void setNametable(WorkbookMethods nt)
  {
    nametable = nt;
  }
private java.io.BufferedReader yy_reader;
private int yy_buffer_index;
private int yy_buffer_read;
private int yy_buffer_start;
private int yy_buffer_end;
private char yy_buffer[];
private int yychar;
private int yyline;
private boolean yy_at_bol;
private int yy_lexical_state;

Yylex (java.io.Reader reader) {
this ();
if (null == reader) {
throw (new Error(“Error: Bad input stream initializer.“));
}
yy_reader = new java.io.BufferedReader(reader);
}

Yylex (java.io.InputStream instream) {
this ();
if (null == instream) {
throw (new Error(“Error: Bad input stream initializer.“));
}
yy_reader = new java.io.BufferedReader(new java.io.InputStreamReader(instream));
}

private Yylex () {
yy_buffer = new char[YY_BUFFER_SIZE];
yy_buffer_read = 0;
yy_buffer_index = 0;
yy_buffer_start = 0;
yy_buffer_end = 0;
yychar = 0;
yyline = 0;
yy_at_bol = true;
yy_lexical_state = YYINITIAL;
}

private boolean yy_eof_done = false;
private final int YYSTRING = 1;
private final int YYINITIAL = 0;
private final int yy_state_dtrans[] = {
0
32
};
private void yybegin (int state) {
yy_lexical_state = state;
}
private int yy_advance ()
throws java.io.IOException {

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2009-10-24 14:13  jexcelapi\
     目录           0  2009-05-26 14:43  jexcelapi\resources\
     目录           0  2009-10-24 14:12  jexcelapi\build\
     目录           0  2009-10-24 14:11  jexcelapi\docs\
     目录           0  2009-05-26 14:49  jexcelapi\src\
     目录           0  2008-05-27 00:37  jexcelapi\build\jlex\
     目录           0  2009-10-24 14:11  jexcelapi\docs\resources\
     目录           0  2009-10-24 14:11  jexcelapi\docs\jxl\
     目录           0  2009-10-24 14:10  jexcelapi\src\jxl\
     目录           0  2009-10-24 14:11  jexcelapi\docs\jxl\write\
     目录           0  2009-10-24 14:11  jexcelapi\docs\jxl\format\
     目录           0  2009-10-24 14:11  jexcelapi\docs\jxl\demo\
     目录           0  2009-10-24 14:10  jexcelapi\src\jxl\common\
     目录           0  2009-10-24 14:10  jexcelapi\src\jxl\biff\
     目录           0  2009-10-24 14:10  jexcelapi\src\jxl\demo\
     目录           0  2009-05-26 14:49  jexcelapi\src\jxl\format\
     目录           0  2009-05-26 14:49  jexcelapi\src\jxl\read\
     目录           0  2009-10-24 14:10  jexcelapi\src\jxl\write\
     目录           0  2009-10-24 14:10  jexcelapi\src\jxl\common\log\
     目录           0  2009-10-24 14:10  jexcelapi\src\jxl\biff\drawing\
     目录           0  2009-10-24 14:10  jexcelapi\src\jxl\biff\formula\
     目录           0  2009-10-24 14:10  jexcelapi\src\jxl\read\biff\
     目录           0  2009-10-24 14:10  jexcelapi\src\jxl\write\biff\
     文件         295  2008-05-27 00:37  jexcelapi\workbook.dtd
     文件        9792  2008-05-27 00:37  jexcelapi\index.html
     文件       93696  2009-09-07 19:26  jexcelapi\jxlrwtest.xls
     文件      725735  2009-10-24 14:11  jexcelapi\jxl.jar
     文件       37786  2008-05-27 00:37  jexcelapi\tutorial.html
     文件        1329  2008-05-27 00:37  jexcelapi\formatworkbook.dtd
     文件         311  2008-05-27 00:37  jexcelapi\.classpath
     文件         400  2008-05-27 00:37  jexcelapi\.project
............此处省略633个文件信息

评论

共有 条评论