javagradleintellij-ideaencodingwindows-1251

error: unmappable character (0x98) for encoding windows-1251


I have a problem with the assembly of the project:

D:...\Main.java:112: error: unmappable character (0x98) for encoding windows-1251
robot.getBrowserControl().findElement(By.xpath("//div[.='НАПИСАТЬ']")).click();

This error in line: robot.getBrowserControl().findElement(By.xpath("//div[.='НАПИСАТЬ']")).click();

Images: error, IDEA settings . Ths bottom-right is selected UTF-8. I'm not sure, but maybe it's like the symbol "И"

img errors

This my gradle file

plugins {
    id 'java'
}

group 'ru.grbi3yh.processthesefiles'
version '1.0-SNAPSHOT'

sourceCompatibility = 1.8

repositories {
    mavenCentral()
}

jar {
    baseName = 'ProcessthFiles'
}


apply plugin: 'application'

dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.12'
    compile group: 'org.seleniumhq.selenium', name: 'selenium-java', version: '2.41.0'
    compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.7'
}

Solution

  • Setting encoding option for Java compilation should help:

    compileJava.options.encoding = 'UTF-8'
    compileTestJava.options.encoding = 'UTF-8'