access windows network drive

A

Aljosa Mohorovic

i have a windows network drive mapped at "Y:" and i'm trying to access
folder "Y:\data\test" from web application (spring app).
if i use local disk ( "C:\data\test" ) everything works fine.

how can i work with/access folder on windows network drive, what are
common problems and solutions?

please post any tips, docs and similar info.

Aljosa
 
R

Roedy Green

i have a windows network drive mapped at "Y:" and i'm trying to access
folder "Y:\data\test" from web application (spring app).
if i use local disk ( "C:\data\test" ) everything works fine.

try using / instead of \, or else remember to double every \.

at the command line verify :

attrib Y:\data\test

try copying a file to Y:\data\test and copying it back to make sure
you have full access.

Experiment with subst J: C:\

and see if you can access J:\data\test

I have never used a network drive in a Java app. I don't even know if
they are supposed to work. Logically they should since you access them
with the same OS C API as local drives.
 
S

Sabine Dinis Blochberger

Aljosa said:
i have a windows network drive mapped at "Y:" and i'm trying to access
folder "Y:\data\test" from web application (spring app).
if i use local disk ( "C:\data\test" ) everything works fine.

how can i work with/access folder on windows network drive, what are
common problems and solutions?

please post any tips, docs and similar info.

Aljosa
You don't say what (if any) errors/exceptions you get.

Could be permissions (have a look at SecurityManager[1]) or the LAN is
down. Could also be that someone else is working o the file and has a
lock.

[1]
http://java.sun.com/j2se/1.4.2/docs/api/java/lang/SecurityManager.html
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,007
Latest member
obedient dusk

Latest Threads

Top