ElDiabloConCaca
U.S.D.A. Prime
I'm a computer science major in college right now, and am trying my best to program everything using XCode on my Macintosh rather than use a PC with JBuilder. So far, so good -- only one thing holding me back from a project or two...
I have a project that reads data from files and outputs certain things. No biggie. In JBuilder, all I need to do is place the data files in the same directory as the project and JBuilder finds them just fine. However, in XCode, I cannot figure out where to place these files. I've even tried making the filenames into absolute paths in the Java code itself, like instead of "dataA.dat" I'll put "/users/(myusername)/Desktop/EasyReader/dataA.dat" but that's a no-go.
Do I need to add these files to the project somehow? Where in the heck do I put these files so my project can access them?!
I have a project that reads data from files and outputs certain things. No biggie. In JBuilder, all I need to do is place the data files in the same directory as the project and JBuilder finds them just fine. However, in XCode, I cannot figure out where to place these files. I've even tried making the filenames into absolute paths in the Java code itself, like instead of "dataA.dat" I'll put "/users/(myusername)/Desktop/EasyReader/dataA.dat" but that's a no-go.
Do I need to add these files to the project somehow? Where in the heck do I put these files so my project can access them?!