Gwt版本2.2 我想拆分我的字符串并为textitem设置掩码
例如:
String b=ADN.CNNC.RR.44;
String[] a= b.split("\\.");
textItem.setMask(a[0] + ">C<CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC");
textItem.setValue(a[a.length -1]);
textItem's Mask : ADN
textItem's Value : 44
在开发模式下它没有问题,但是在localhost拆分不起作用时它会显示我
textItem's Value :ADN.CNNC.RR.44
任何答案?