file2 Lecture 30 - Java(11) File, InputStream, OutputStream, 보조스트림, FileReader, ZipCode 검색 FileEx01 continued import java.io.File; import java.io.IOException; public class FileEx01 { public static void main(String[] args) { // File 생성 // 파일이나 디렉토리 경로를 통해서 생성 // 파일이나 디렉토리가 반드시 존재하지 않아도 객체 생성 가능하다 File f1 = new File("c:\\Java");// windows File f2 = new File("c:/Java");// linux / mac File f3 = new File("c:/Java/test.txt");// 파일명 File f4 = new File("c:/Java", "test.txt");// 경로, 파일명 // 경로명.. 2023. 6. 20. Lecture 29 - Java(10) ArrayList, LinkedList, HashSet, TreeSet, HashMap, File ArrayList 계속 ArrayListEx05 - 2차원 데이터를 저장 2차원 데이터를 저장(행과 열) = 테이블 2차원 배열 ArrayList 2개 : ArrayList안에 ArrayList를 넣는다 ArrayList + 클래스 1 홍길동 010-111-1111 20 서울시 2 박문수 010-222-2222 22 경기도 3 이몽룡 010-333-3333 23 강원도 위 데이터를 2차원 배열 넣고 싶은데 어떻게 하면 될까요? public class ArrayListEx05 { public static void main(String[] args) { // 2차원 데이터를 저장(행과 열) = 테이블 // 2차원 배열 // ArrayList 2개 : ArrayList안에 ArrayList를 넣는다 // Ar.. 2023. 6. 20. 이전 1 다음