如何将编码 UTF-8 传递给 Maven 中的 Javac 编译器?这是我的代码:
Assert.assertTrue(CollectionWidjet.getColPickerListWrapperList(i).getListSpan().getText().trim().equalsIgnoreCase(data.getCollections().get(i).getName().trim()));
这是在输入列表上运行的。基本上,当它是像印地语/中文这样的非 Unicode 字符时,它会失败。
在普通的 javac 编译器中,它是如何编译的:
javac -encoding UTF-8 MainClass.java