You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
374 B
Java

Reading UTF-8 Encoded Data
public static void main(String args[]){
try{
BufferedReader in = new BufferedReader(
new InputStreamReader(new FileInputStream("file.txt"), "UTF8"));
String str = in.readLine();
System.out.println(str);
}
catch (Exception ioe){
ioe.printStackTrace();
}
}