Eclipse character encoding

前端 未结 2 717
暗喜
暗喜 2020-12-06 05:44

I am using Scanner to scan a .txt document in Java. However, when I open the .txt document in Eclipse, I notice some characters are not being recognized, and they are repla

2条回答
  •  有刺的猬
    2020-12-06 06:24

    The file you are reading must be containing UTF-8 or some other encoding characters and when you try to print them on console then you will get some characters as �'. This is because the default console encoding is not UTF-8 in eclipse. You need to set it by going to Run Configuration -> Common -> Encoding -> Select UTF-8 from the drop down. Check below screenshot:

    enter image description here

提交回复
热议问题