강의

멘토링

커뮤니티

Inflearn Community Q&A

cheetos's profile image
cheetos

asked

Solid Foundation! Starting Java Intensively Part 3 (Part 2): Sockets and File I/O

File Creation & List View

mac 사용자 폴더 생성 경로 변경

Resolved

Written on

·

111

1

 

String tmpPath = "C:/Tmp";

mac은 예제에 있는 경로가 맞지 않아 아래 에러가 발생합니다.

Caused by: java.io.IOException: No such file or directory

그래서 올바른 홈 경로를 변경해줘야 합니다.

아래의 경로로 변경

String tmpPath = System.getProperty("user.home") + "/Temp";

이렇게 경로를 바꿔주시면 /Users/{username} 경로에 정상적으로 생성됩니다.

 

혹시 모르는 분이 계실까봐 작성해둡니다.

java네트워크tcpsocket

Answer 2

0

nullnull8537님의 프로필 이미지
nullnull8537
Instructor

mac 환경 사용자시군요. 정보 공유 고맙습니다. 😄

0

윤수님 짱 !!

cheetos's profile image
cheetos

asked

Ask a question