2023. 12. 26. 19:09ㆍ2023.11.21-2024.05.31
package coll;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class Test02 {
public static void main(String[] args) {
List<Map<String, String>> list = new ArrayList<Map<String, String>>();
Map<String, String> map = new HashMap<String, String>();
map.put("no", "1");
map.put("title", "첫번째 글");
map.put("write", "poseidon");
map.put("date", "2023-12-10");
map.put("like", "5");
list.add(map);
map = new HashMap<String, String>();
map.put("no", "2");
map.put("title", "두번째 글");
map.put("write", "hong");
map.put("date", "2023-12-11");
map.put("like", "15");
list.add(map);
map = new HashMap<String, String>();
map.put("no", "3");
map.put("title", "삼번째 글");
map.put("write", "kim");
map.put("date", "2023-12-12");
map.put("like", "6");
list.add(map);
map = new HashMap<String, String>();
map.put("no", "4");
map.put("title", "네번째 글");
map.put("write", "LEE");
map.put("date", "2023-12-15");
map.put("like", "60");
list.add(map);
map = new HashMap<String, String>();
map.put("no", "5");
map.put("title", "다섯번째 글");
map.put("write", "hong");
map.put("date", "2023-12-16");
map.put("like", "12");
list.add(map);
// 출력?
System.out.println(list);
System.out.println("============================================");
System.out.println(" 번호 | 제목 | 날짜 | 좋아요 |");
for (int i = 0; i < list.size(); i++) {
System.out.print(list.get(i).get("no") + "\t");
System.out.print(list.get(i).get("title") + "\t");
System.out.print(list.get(i).get("wtite") + "\t");
System.out.print(list.get(i).get("date") + "\t");
System.out.println(list.get(i).get("like") + "\t");
}
/*
* 번호| 제목 | 글쓴이 | 날짜 | 좋아요 1 첫번 poseidon 2023 1 첫번 poseidon 2023 1 첫번 poseidon
* 2023 1 첫번 poseidon 2023 1 첫번 poseidon 2023 1 첫번 poseidon 2023
*
*
*/
}
}
[{date=2023-12-10, no=1, like=5, title=첫번째 글, write=poseidon}, {date=2023-12-11, no=2, like=15, title=두번째 글, write=hong}, {date=2023-12-12, no=3, like=6, title=삼번째 글, write=kim}, {date=2023-12-15, no=4, like=60, title=네번째 글, write=LEE}, {date=2023-12-16, no=5, like=12, title=다섯번째 글, write=hong}]
============================================
번호 | 제목 | 날짜 | 좋아요 |
1 첫번째 글 null 2023-12-10 5
2 두번째 글 null 2023-12-11 15
3 삼번째 글 null 2023-12-12 6
4 네번째 글 null 2023-12-15 60
5 다섯번째 글 null 2023-12-16 12
'2023.11.21-2024.05.31' 카테고리의 다른 글
231226 JAVA Study (0) | 2023.12.26 |
---|---|
231221 JAVA Test02 (1) | 2023.12.26 |
231221 JAVA Set02 (0) | 2023.12.26 |
231221 JAVA Set (0) | 2023.12.26 |
231221 JAVA Map01 (1) | 2023.12.26 |