Files
openide/java/java-tests/testData/inspection/filesReadWriteString/beforeWriteStringUtf16.java

16 lines
537 B
Java

// "Replace with 'Files.writeString()'" "GENERIC_ERROR_OR_WARNING"
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.nio.charset.Charset;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;
public class Example {
private static final Charset CHARSET = StandardCharsets.UTF_16;
void test1(String str) throws IOException {
byte[] bytes = str.getBytes(CHARSET);
Files.write<caret>(Paths.get("/etc/passwd"), bytes, StandardOpenOption.CREATE);
}
}