转:使用Java将Excel 列号数字与字母互相转换

转载自:http://blog.csdn.net/u010571844/article/details/46806265

转载内容(有修改):

public class ExcelColumn {
    public static void main(String[] args) {
        String colstr = "B";
        int colIndex = excelColStrToNum(colstr);
        System.out.println(colstr+"列转换成数字下标:"+colIndex);

        colIndex = 26;
        colstr = excelColIndexToStr(colIndex);
        System.out.println("下标为"+colIndex+"转换成列:"+colstr);

        colstr = "AAAA";
        colIndex = excelColStrToNum(colstr);
        System.out.println(colstr+"列转换成数字下标:"+colIndex);

        colIndex = 466948;
        colstr = excelColIndexToStr(colIndex);
        System.out.println("下标为"+colIndex+"转换成列:"+colstr);
    }

    /**
	 * 该方法用来将Excel中的ABCD列转换成具体的数据
	 * @param column:ABCD列名称
	 * @return integer:将字母列名称转换成数字
	 * **/
    public static int excelColStrToNum(String column) {
        int num = 0;
        int result = 0;
        int length =column.length(); 
        for(int i = 0; i < length; i++) {
            char ch = column.charAt(length - i - 1);
            num = (int)(ch - 'A' + 1) ;
            num *= Math.pow(26, i);
            result += num;
        }
        return result;
    }

    /**
	 * 该方法用来将具体的数据转换成Excel中的ABCD列
	 * @param int:需要转换成字母的数字
	 * @return column:ABCD列名称
	 * **/
    public static String excelColIndexToStr(int columnIndex) {
        if (columnIndex <= 0) {
            return null;
        }
        String columnStr = "";
        columnIndex--;
        do {
            if (columnStr.length() > 0) {
                columnIndex--;
            }
            columnStr = ((char) (columnIndex % 26 + (int) 'A')) + columnStr;
            columnIndex = (int) ((columnIndex - columnIndex % 26) / 26);
        } while (columnIndex > 0);
        return columnStr;
    }
}

猜你喜欢

转载自1017401036.iteye.com/blog/2336756