您好,如果我有包含以下行的 txt 文件:
newmtl material0
Ka 1.000000 1.000000 1.000000
Kd 1.000000 1.000000 1.000000
Ks 0.000000 0.000000 0.000000
Tr 1.000000
它被拆分为:
if(line.startsWith("Ks")){
String[] str=line.split("[ ]+");}
它返回
0.000000
0.000000
0.000000
为什么“[]+”表示用空格分割??找不到引用此内容的任何内容。