전체 글(814)
-
Recursive 파일 정보 가져오기
public class FileUtils { public static List getFiles(String directory) { try(Stream filePaths = Files.walk(Paths.get(directory))) { return filePaths .filter(Files::isRegularFile) .collect(Collectors.toList()); } catch(IOException e) { e.printStackTrace(); return List.of(); } }}
2024.11.06 -
String "2024-11-06 11:24:01 +0900"을 Date로 변환
import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; import java.util.TimeZone; public class DateExample { public static void main(String[] args) { String dateString = "2024-11-06 11:24:01 +0900"; SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss Z"); try { Date date = formatter.parse(date..
2024.11.06 -
영작
heavenly mandate: 천명embrace the word: 말씀을 받아들이다combine it with your faith: 신앙과 연결하다recall the last week's message: 지난주 메세지를 떠올리다be rampant: 만연하다prevail: 만연하다be by nature objects of wrath: 본질상 진노의 대상이다his mercy and his truth: 인자와 성실come up with: 생각하다step brothers: 의붓형drawn up against: 반대하다commission out with: 와 함께 위탁받다flock to you: 너에게 모여들다you don't have to tell me more: 나에게 더 이상 말해줄 필요 없다.That w..
2024.11.06 -
대칭이동
점대칭 이동x축 대칭 이동: (x, y) -> (x, -y)y축 대칭 이동: (x, y) -> (-x, y)원점 대칭 이동: (x, y) -> (-x, -y)y=x 대칭 이동: (x, y) -> (y, x)방정식 대칭 이동x축 대칭 이동: f(x, y)=0 -> f(x, -y)=0y축 대칭 이동: f(x, y)=0 -> f(-x, y)=0원점 대칭 이동: f(x, y)=0 -> f(-x, -y)=0y=x 대칭 이동: f(x, y)=0 -> f(y, x)=0예제y = x + 1x축 대칭 이동: -y = x + 1 -> y = -x - 1y축 대칭 이동: y = -x + 1원점 대칭 이동: -y = -x + 1 -> y = x - 1y=x 대칭 이동: x = y + 1 -> y = x - 1
2024.11.03 -
신발끈 공식
참조: https://ko.wikipedia.org/wiki/%EC%8B%A0%EB%B0%9C%EB%81%88_%EA%B3%B5%EC%8B%9D#:~:text=%EC%8B%A0%EB%B0%9C%EB%81%88%20%EA%B3%B5%EC%8B%9D(%E2%80%95%E5%85%AC%E5%BC%8F),%E6%96%9C%E7%B7%9A%20%E5%85%AC%E5%BC%8F)%EC%9C%BC%EB%A1%9C%EB%8F%84%20%EB%B6%88%EB%A6%B0%EB%8B%A4. 신발끈 공식 - 위키백과, 우리 모두의 백과사전위키백과, 우리 모두의 백과사전. 신발끈 공식(―公式)은 좌표평면 상에서 꼭짓점의 좌표를 알 때 다각형의 면적을 구할 수 있는 방법이다. 다각형의 각 꼭짓점의 좌푯값을 교차하여 곱하는 모ko..
2024.11.03 -
to부정사 부사
목적: ~ 하기 위해서He used science to help many people형용사 수식: ~하기에This problem is difficult to solve감정의 원인: ~하니, ~하게 되어I'm glad to see you결과: ~해서 (결국) ~하다My grandfather lived to be 80 years oldShe grew up to be a doctor
2024.11.03