Xiaoming
10 years agoNew Contributor
How to use French character in SoapUI property?
I create a rest testing in SoapUI, in the get request there were several parameters, the test datas were put in excel for there were too many cases. there was one parameter called 'firstname', and ...
- 10 years ago
Hi Xiaoming,
Try setting French in your language settings in Windows. In most Windows versions, the steps should be as follows:
- Open Region and Language by clicking the Start button, clicking Control Panel, clicking Clock, Language, and Region, and then clicking Region and Language.
- Click the Keyboards and Languages
- Under Display language, choose a language from the list, and then click OK.
- 10 years ago
Thanks Tanya, I change the PC setting as you said, but it still cannot work. it seems not just environment issue, so I continue changing my groovy script about get excel data, set workbook setting as below and it works now:smileyhappy:
WorkbookSettings setting=new WorkbookSettings(); setting.setEncoding("iso-8859-1"); Workbook workbook=Workbook.getWorkbook(new File(xlsName),setting);