Reading a file from another machine on the network

  • Follow


Hello, I have a requirement in which i want to read a file from anothermachine in the network. And also the machine is password protected. Can any one help me out in this.I tried doing it in following way,URI uri = URI.create("file://9.182.198.145/shared");File file = new File(uri);As i excute this code i get an exception as:java.lang.IllegalArgumentException: URI has an authority componentCan any one help me out in this.Thanks in Advance
0
Reply mineshdesai (4) 3/14/2007 10:46:56 AM

mineshdesai@gmail.com schrieb:
> Hello,
> 
>  I have a requirement in which i want to read a file from another
> machine in the network. And also the machine is password protected.

Which protocol?

> 
>  Can any one help me out in this.
> 
> I tried doing it in following way,
> 
> URI uri = URI.create("file://9.182.198.145/shared");
> 
> File file = new File(uri);
> 
> As i excute this code i get an exception as:
> java.lang.IllegalArgumentException: URI has an authority component

Seems like the above is treated as UNC name which can't be used accross 
platforms. E. g. Linux would look for a file 'shared' in directory 
'9.182.198.145'.

Under windows you might want to try 
"file://username:password@9.182.198.145/shared"

but perhaps it's easier to mount the share via

net use X: \\9.182.198.145\Shared <password> /user:<username>

and then access the file via X: ;)

Bye
Michael
0
Reply Michael 3/14/2007 11:14:03 AM


On Mar 14, 4:14 pm, Michael Rauscher <michlm...@gmx.de> wrote:
> mineshde...@gmail.com schrieb:
>
> > Hello,
>
> >  I have a requirement in which i want to read a file from another
> > machine in the network. And also the machine is password protected.
>
> Which protocol?
>
>
>
> >  Can any one help me out in this.
>
> > I tried doing it in following way,
>
> > URI uri = URI.create("file://9.182.198.145/shared");
>
> > File file = new File(uri);
>
> > As i excute this code i get an exception as:
> > java.lang.IllegalArgumentException: URI has an authority component
>
> Seems like the above is treated as UNC name which can't be used accross
> platforms. E. g. Linux would look for a file 'shared' in directory
> '9.182.198.145'.
>
> Under windows you might want to try
> "file://username:passw...@9.182.198.145/shared"
>
> but perhaps it's easier to mount the share via
>
> net use X: \\9.182.198.145\Shared <password> /user:<username>
>
> and then access the file via X: ;)
>
> Bye
> Michael

Michael Thanks for reply,

I will explain you the requirement,

I have few machines on the network, i want to access a file under
"shared" folder on the machine with i.p address as 9.182.198.145

and all the systems have windows OS.

One more thing i tried with following code and i got the same
exception

URI uri = URI.create("file://username:password@9.182.198.145/shared");

File file = new File(uri);


can you please help me out in this.

Thanks

0
Reply mineshdesai 3/14/2007 12:20:10 PM

mineshdesai@gmail.com schrieb:
> On Mar 14, 4:14 pm, Michael Rauscher <michlm...@gmx.de> wrote:
>> mineshde...@gmail.com schrieb:
>>
>>> Hello,
>>>  I have a requirement in which i want to read a file from another
>>> machine in the network. And also the machine is password protected.
>> Which protocol?
>>
>>
>>
>>>  Can any one help me out in this.
>>> I tried doing it in following way,
>>> URI uri = URI.create("file://9.182.198.145/shared");
>>> File file = new File(uri);
>>> As i excute this code i get an exception as:
>>> java.lang.IllegalArgumentException: URI has an authority component
>> Seems like the above is treated as UNC name which can't be used accross
>> platforms. E. g. Linux would look for a file 'shared' in directory
>> '9.182.198.145'.
>>
>> Under windows you might want to try
>> "file://username:passw...@9.182.198.145/shared"
>>
>> but perhaps it's easier to mount the share via
>>
>> net use X: \\9.182.198.145\Shared <password> /user:<username>
>>
>> and then access the file via X: ;)
>>
>> Bye
>> Michael
> 
> Michael Thanks for reply,
> 
> I will explain you the requirement,
> 
> I have few machines on the network, i want to access a file under
> "shared" folder on the machine with i.p address as 9.182.198.145
> 
> and all the systems have windows OS.
> 
> One more thing i tried with following code and i got the same
> exception

Sorry, I was wrong.

Either you've got access to the Share, then you can simply use the UNC 
name (\\9.182.198.145\Shared). Otherwise I thinkg you'd have to map the 
Share to a drive letter or to have a look at http://jcifs.samba.org ;)

Bye
Michael
0
Reply Michael 3/14/2007 12:53:21 PM

On Mar 14, 5:53 pm, Michael Rauscher <michlm...@gmx.de> wrote:
> mineshde...@gmail.com schrieb:
>
>
>
>
>
> > On Mar 14, 4:14 pm, Michael Rauscher <michlm...@gmx.de> wrote:
> >> mineshde...@gmail.com schrieb:
>
> >>> Hello,
> >>>  I have a requirement in which i want to read a file from another
> >>> machine in the network. And also the machine is password protected.
> >> Which protocol?
>
> >>>  Can any one help me out in this.
> >>> I tried doing it in following way,
> >>> URI uri = URI.create("file://9.182.198.145/shared");
> >>> File file = new File(uri);
> >>> As i excute this code i get an exception as:
> >>> java.lang.IllegalArgumentException: URI has an authority component
> >> Seems like the above is treated as UNC name which can't be used accross
> >> platforms. E. g. Linux would look for a file 'shared' in directory
> >> '9.182.198.145'.
>
> >> Under windows you might want to try
> >> "file://username:passw...@9.182.198.145/shared"
>
> >> but perhaps it's easier to mount the share via
>
> >> net use X: \\9.182.198.145\Shared <password> /user:<username>
>
> >> and then access the file via X: ;)
>
> >> Bye
> >> Michael
>
> > Michael Thanks for reply,
>
> > I will explain you the requirement,
>
> > I have few machines on the network, i want to access a file under
> > "shared" folder on the machine with i.p address as 9.182.198.145
>
> > and all the systems have windows OS.
>
> > One more thing i tried with following code and i got the same
> > exception
>
> Sorry, I was wrong.
>
> Either you've got access to the Share, then you can simply use the UNC
> name (\\9.182.198.145\Shared). Otherwise I thinkg you'd have to map the
> Share to a drive letter or to have a look athttp://jcifs.samba.org;)
>
> Bye
> Michael- Hide quoted text -
>
> - Show quoted text -

Correct me if iam wrong...

I have to Map the shared folder on my system then use the drive name
give to the mapped folder in file constructor.

Secondly,

Shared folder is password protected, so now what should be done?

Thanks
Minesh

0
Reply mineshdesai 3/14/2007 1:05:31 PM

mineshdesai@gmail.com wrote:> I have to Map the shared folder on my system then use the drive name> give to the mapped folder in file constructor.> > Secondly,> > Shared folder is password protected, so now what should be done?You have to provide the password when you mount the folder, so that part is already done. In effect, the drive mapping idea pushes the security problem out of Java space into user head space.-- Lew
0
Reply Lew 3/14/2007 1:35:56 PM

On Mar 14, 6:35 pm, Lew <l...@nospam.lewscanon.com> wrote:> mineshde...@gmail.com wrote:> > I have to Map the shared folder on my system then use the drive name> > give to the mapped folder in file constructor.>> > Secondly,>> > Shared folder is password protected, so now what should be done?>> You have to provide the password when you mount the folder, so that part is> already done. In effect, the drive mapping idea pushes the security problem> out of Java space into user head space.>> -- LewIs there any other alternative for this.That is, any alternative for mapping the folder into local drive.because if server changes then i need to again map the folder. Thatsnot feasible to do if i have to access many other machines.-- Minesh
0
Reply mineshdesai 3/14/2007 1:47:24 PM

mineshdesai@gmail.com wrote:> Is there any other alternative for this.> That is,>  any alternative for mapping the folder into local drive.jCIFS will probably do it.    http://jcifs.samba.org/User-space implementation (in Java) of the SMB/CIFS network protocol whichunderlies Windows shared filesystems.  Client side only (as far as I know).    -- chris
0
Reply Chris 3/14/2007 6:30:25 PM

mineshdesai@gmail.com wrote:> On Mar 14, 6:35 pm, Lew <l...@nospam.lewscanon.com> wrote:>> mineshde...@gmail.com wrote:>>> I have to Map the shared folder on my system then use the drive name>>> give to the mapped folder in file constructor.>>> Secondly,>>> Shared folder is password protected, so now what should be done?>> You have to provide the password when you mount the folder, so that part is>> already done. In effect, the drive mapping idea pushes the security problem>> out of Java space into user head space.>>>> -- Lew> > Is there any other alternative for this.> That is,>  any alternative for mapping the folder into local drive.> > because if server changes then i need to again map the folder. Thats> not feasible to do if i have to access many other machines.I've already mentioned an alternative: http://jcifs.samba.org.ByeMichael
0
Reply Michael 3/14/2007 7:02:20 PM

On Mar 14, 11:30 pm, "Chris Uppal" <chris.up...@metagnostic.REMOVE-
THIS.org> wrote:
> mineshde...@gmail.com wrote:
> > Is there any other alternative for this.
> > That is,
> >  any alternative for mapping the folder into local drive.
>
> jCIFS will probably do it.
>
>    http://jcifs.samba.org/
>
> User-space implementation (in Java) of the SMB/CIFS network protocol which
> underlies Windows shared filesystems.  Client side only (as far as I know).
>
>     -- chris

Hey guys thanks for help, i was able to do it by using jCIFS

Bye
Minesh Desai

0
Reply mineshdesai 3/15/2007 12:20:55 PM

9 Replies
150 Views

(page loaded in 0.161 seconds)

Similiar Articles:













7/29/2012 6:33:43 PM


Reply: