[Java] 자바 패키지, 그리고 import에 대해(static import 문) 자바 패키지, 그리고 import 에 대해 (static import 문) https://milhouse93.tistory.com/54 https://studymake.tistory.com/432 https://milhouse93.tistory.com/52?category=749262 (클래스 파일들을 압축한 것이 jar파일(*.jar)이다.) (패키지명은 클래스명과 쉽게 구분하기 위해서 소문자로 하는 것은 원칙으로 한다.) Java 2021.01.05
[이것이 자바다] 자바 IO패키지 공부 정리 inputstream_read package sec02.exam01_inputstream_read; import java.io.FileInputStream; import java.io.InputStream; public class ReadExample1 { public static void main(String[] args) throws Exception{ InputStream is= new FileInputStream("C:/Temp/test.txt"); // 개행 fw.flush(); fw.close(); System.out.println("파일에 저장되었습니다."); } } inputstreamreader package sec05.exam01_inputstreamreader; import java... Java 2020.12.26