这个话什么意思?假设:
stroids=1.3.6.1.2.1.4.22.1结果是多少?

解决方案 »

  1.   

    将stroids按照"//."隔开,结果:1.3.6.1.2.1.4.22.1
    我估计楼主估计想要的是String[] arrind = stroids.split("\\.");
      

  2.   

    是啊 楼主 你写错了吧,应该是String[] arrind = stroids.split("\\.");这样arrind 数组的值就是
    index  value
    0:       1
    1:       3
    2:       6
    3:       1
    4:       2
    5:       1
    6:       4
    7:       22
    8:       1