반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 리눅스셋팅
- ObjectInputStream
- isinterrupted()
- ID중복
- first-child
- InputDialog
- 리눅스세팅
- 상관 서브 쿼리
- 상관서브쿼리
- 동기화
- Daemon()
- String char[] 형변환
- 메모리스트림
- Linux세팅
- first-of-child
- Linux셋팅
- include지시자
- include 지시자
- include액션태그
- sleep()메소드
- 스레드그룸
- ThreadGroup()
- StringWriter
- interrupt()
- StringReader
- interrupted()
- 표현 언어
- 아이디중복
- char[] String 형변환
- MemoryStream
Archives
- Today
- Total
목록File (1)
다연이네
[days25] File 객체
File 객체는 입출력의 대상이 되기 때문에 많이 쓰인다. 파일일수도 있고, 디렉토리일수도 있다. 파일 객체의 메소드 알아보기 package test; import java.io.File; import java.io.IOException; public class Re05 { public static void main(String[] args) throws IOException { //C:\\Users\\82103\\Pictures\\Saved Pictures\\cloud.jpg //File file = new File(File parent, String child); File parent = new File("C:\\Users\\82103\\Pictures\\Saved Pictures\\"); Strin..
Java
2020. 10. 25. 15:28