我有一个String
,我能够将它转换成一个Vector<Integer>
.
public class VectorConverter {
public static Vector <Integer> v (String s) {
Vector<Integer> myVec = new Vector();
//Convert the string to a char array and then just add each char to the vector
char[] sChars = s.toCharArray();
int[] sInt= new int [sChars.length];;
for(int i = 0; i < s.length(); ++i) {
sInt[i]= Character.getNumericValue(sChars[i]);
myVec.add(sInt[i]);
}
return myVec;
}}
现在我想把它转换成一个二维int
数组(int[][]
)。例如,如果我拥有[0,1,0,0]
它将成为一个列向量,就像这样
0
1
0
0
有任何想法吗?