📄 cellreferencehelper.java2
字号:
/*********************************************************************
*
* 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;
import jxl.biff.formula.ExternalSheet;
/**
* A helper to transform between excel cell references and
* sheet:column:row notation
* Because this function will be called when generating a string
* representation of a formula, the cell reference will merely
* be appened to the string buffer instead of returning a full
* blooded string, for performance reasons
*/
public final class CellReferenceHelper
{
/**
* The character which indicates whether a reference is fixed
*/
private static final char fixedInd='$';
/**
* Constructor to prevent instantiation
*/
private CellReferenceHelper()
{
}
public static void getCellReference(int column, int row, StringBuffer buf)
{
int v = column/26;
int r = column%26;
StringBuffer tmp = new StringBuffer();
while (v != 0)
{
char col = (char) ((int) 'A' + r) ;
tmp.append(col);
r = v%26 - 1; // subtract one because only rows >26 preceded by A
v = v/26;
}
char col = (char) ((int) 'A' + r) ;
tmp.append(col);
// Insert into the proper string buffer in reverse order
for (int i = tmp.length() - 1; i >= 0; i--)
{
buf.append(tmp.charAt(i));
}
buf.append(Integer.toString(row+1));
}
/**
* Gets the fully qualified cell reference given the column, row
* external sheet reference etc
*
* @param sheet
* @param column
* @param row
* @param workbook
* @param buf
*/
public static void getCellReference
(int sheet, int column, int row,
ExternalSheet workbook, StringBuffer buf)
{
buf.append(workbook.getExternalSheetName(sheet));
buf.append('!');
getCellReference(column, row, buf);
}
/**
* Gets the cell reference for the specified column and row
*
* @param column
* @param row
* @return
*/
public static String getCellReference(int column, int row)
{
StringBuffer buf = new StringBuffer();
getCellReference(column, row, buf);
return buf.toString();
}
/**
* Gets the columnn number of the string cell reference
*
* @param s the string to parse
* @return the column portion of the cell reference
*/
public static int getColumn(String s)
{
int colnum = 0;
int numindex = getNumberIndex(s);
String s2 = s.toUpperCase();
int startPos = 0;
if (s.charAt(0) == fixedInd)
{
startPos = 1;
}
int endPos = numindex;
if (s.charAt(numindex - 1) == fixedInd)
{
endPos--;
}
for (int i = startPos; i < endPos ; i++)
{
if (i != startPos)
{
colnum = (colnum+1) * 26;
}
colnum += (int) s2.charAt(i) - (int) 'A';
}
return colnum;
}
/**
* Gets the row number of the cell reference
*/
public static int getRow(String s)
{
try
{
return (Integer.parseInt(s.substring(getNumberIndex(s))) - 1);
}
catch (NumberFormatException e)
{
System.err.println("Warning: " + e.toString());
return 0xffff;
}
}
/**
* Finds the position where the first number occurs in the string
*/
private static int getNumberIndex(String s)
{
// Find the position of the first number
boolean numberFound = false;
int pos = 0;
char c = '\0';
while (!numberFound && pos < s.length() )
{
c = s.charAt(pos);
if (c >= '0' && c <= '9')
{
numberFound = true;
}
else
{
pos++;
}
}
return pos;
}
/**
* Sees if the column component is relative or not
*
* @param s
* @return TRUE if the column is relative, FALSE otherwise
*/
public static boolean isColumnRelative(String s)
{
return s.charAt(0) != fixedInd;
}
/**
* Sees if the row component is relative or not
*
* @param s
* @return TRUE if the row is relative, FALSE otherwise
*/
public static boolean isRowRelative(String s)
{
return s.charAt(getNumberIndex(s) - 1) != fixedInd;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -