unhandled exception type UnsupportedEncodingException

当使用下面做编码转换时

BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream("test.txt"), "utf8")); 
在编译时老是提示“unhandled   exception   type   UnsupportedEncodingException” ,编码类型怎么换都还是不行。

这个报错代表java编译器发现语法中有可能抛出异常,所以要求加try catch。


你可能感兴趣的:(unhandled exception type UnsupportedEncodingException)