Notice
Recent Posts
Recent Comments
Link
목록한줄 (1)
개발 무지렁이
[Java] 1바이트, 1문자, 多문자 읽기
InputStream 1byte 읽기 InputStream is = System.in; int i = is.read(); // 1byte읽기 ⭐ 주의) import java.io.IOException; import java.io.InputStream; public class KeyboardInputIOExam { public static void main(String[] args) throws IOException { InputStream is = System.in; int i = is.read(); System.out.println(i + " = " + (char)i); } } InputStream에서 A를 입력하고, char로 캐스팅해서 출력하면 A그대로 나오지만 한글을 한문자 입력했을 시, 전혀 이..
Backend/자바
2023. 3. 11. 18:42