Olá pessoal,
Ocorreu erro descrito a seguir e ao copiar código do site não apresentou o erro. Eu não consegui identificar a causa do erro. O primeiro código é do site da alura.
1, US_ASCII Exception in thread "main" java.io.UnsupportedEncodingException: US_ASCII
package br.com.alura.java.io.teste;
import java.io.UnsupportedEncodingException;
import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;
public class TesteUnicodeEEncoding {
public static void main(String[] args) throws UnsupportedEncodingException {
String s = "ç";
System.out.println(s.codePointAt(0));
Charset charset = Charset.defaultCharset();
System.out.println(charset.displayName());
byte[] bytes = s.getBytes("windows-1252");
System.out.println(bytes.length + ", windows-1252, ");
String sNovo = new String(bytes, "windows-1252");
System.out.println(sNovo);
bytes = s.getBytes("UTF-16");
System.out.print(bytes.length + ", UTF-16, ");
sNovo = new String(bytes, "UTF-16");
System.out.println(sNovo);
bytes = s.getBytes(StandardCharsets.US_ASCII);
System.out.print(bytes.length + ", US-ASCII, ");
sNovo = new String(bytes, "US-ASCII");
System.out.println(sNovo);
}
}
package br.com.alura.java.io.teste;
import java.io.UnsupportedEncodingException;
import java.nio.charset.Charset;
import java.nio.charset.StandardCharsets;
public class teste {
public static void main(String[] args) throws UnsupportedEncodingException {
String s = "ç";
System.out.println(s.codePointAt(0));
Charset charset = Charset.defaultCharset();
System.out.println(charset.displayName());
byte[]bytes = s.getBytes("windows-1252");
System.out.print(bytes.length + ", windows-1252 ");
String sNovo = new String(bytes, "windows-1252");
System.out.println(sNovo);
bytes = s.getBytes("UTF-16");
System.out.print(bytes.length + ", UTF-16 ");
sNovo = new String(bytes, "UTF-16");
System.out.println(sNovo);
bytes = s.getBytes(StandardCharsets.US_ASCII);
System.out.print(bytes.length + ", US_ASCII ");
sNovo = new String(bytes, "US_ASCII");
System.out.println(sNovo);
}
}