Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
527 views
in Technique[技术] by (71.8m points)

java - Path to file on a Mac: FileNotFoundException

I'm working on a mac and I'm trying to specify the path to a file on my desktop.

I just did it like this: File file = new File("/users/desktop/sample.json");

When I tried running it I got a FileNotFoundException.

How do I correctly specify the path?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Mac OS X's filesystem is case sensitive. Users and Desktop should start with capital letters, and your filename should also match case too.

Since you're looking for your desktop folder and not the root folder of a user with the name desktop, you need to add your username after the Users folder. For example:

File file = new File("/Users/LuxuryMode/Desktop/sample.json");

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...