当前位置: 移动技术网 > IT编程>开发语言>Java > java编程实现根据EXCEL列名求其索引的方法

java编程实现根据EXCEL列名求其索引的方法

2019年07月22日  | 移动技术网IT编程  | 我要评论

本文实例讲述了java编程实现根据excel列名求其索引的方法。分享给大家供大家参考,具体如下:

原理:
[a1-z26]*26^n-1 + [a1-z26]*26^n-2 + ... + [a1-z26]*26^0

具体代码如下:

/* 
 * to change this template, choose tools | templates 
 * and open the template in the editor. 
 */ 
import java.util.hashmap; 
import java.util.map; 
/** 
 * 
 * @author jdkleo 
 */ 
public class excelutil { 
  public static int getcellnum(string cellstr) { 
    char[] cellstrarray = cellstr.touppercase().tochararray(); 
    int len = cellstrarray.length; 
    int n = 0; 
    for(int i=0;i<len;i++){ 
      n += (((int)cellstrarray[i])-65+1)*math.pow(26, len-i-1); 
    } 
    return n-1; 
  } 
  public static void main(string[] args) { 
    system.out.print(getcellnum("aaa")); 
  } 
}

希望本文所述对大家java程序设计有所帮助。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网