如何在Selenium中读取包含特殊字符的数值

时间:2016-03-01 13:56:43

标签: java number-formatting

我想从excel表中读取包含特殊字符(即8.00%)的数值。 目前我正在尝试代码:

int fee= (int)txtFee.getNumericCellValue(); 
strFee= String.valueOf(fee); 

因此我得到的值为0.08,如何处理这种情况。

0 个答案:

没有答案