public class test {
public static void main(String args[])
{
String s="bbbbbbb111d11m22d22m33d33c444d44m55d55m66d66c777d77m88d88m99d99bbbbbbb";
s=s.replace("b", "");
s=s.replace("d", ".");
String [] temp;
temp=s.split("c");
String [][] Object;//=new String[temp.length][temp1.length];
for(int i=0;i<temp.length;i++)
{
String [] temp1;
temp1=temp[i].split("m");
for (int j =0;j<temp1.length;j++){
Object[i][j]=temp1[j];
}
}
}
}
为啥会报错呢???
------解决方案--------------------
String [] temp; // 声明
temp=s.split("c"); // 初始化