Split和Mask在localhost下不起作用

时间:2011-12-22 07:35:41

标签: gwt

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

任何答案?

1 个答案:

答案 0 :(得分:0)

JRE emulation reference没有提到String.mask()方法,我想它当时不受支持。