我想将一个字符串数组中的值存储到另一个字符串数组中。但是下面的代码出现“NullPointerException”错误。“imagesSelected”是一个字符串数组,里面存储有值。但是当我想在子字符串之后将它移动到另一个字符串数组中时,我得到了错误。我相信是因为最后一行代码。我不知道如何使它工作。
String[] imageLocation;
if(imagesSelected.length >0){
for(int i=0;i<imagesSelected.length;i++){
int start = imagesSelected[i].indexOf("WB/");
imageLocation[i] = imagesSelected[i].substring(start + 3);
}
}