cancel
Showing results for 
Search instead for 
Did you mean: 

Copy a archive from server

Former Member
0 Kudos

Hi

I need copy a archive (.zip) of the server (not a app server) in pocket. I tested in desktop and it do the copy. But in the pocket don't work. The code is below:

RandomAccessFile mi = new RandomAccessFile("
10.4.1.98\Map_In\73.zip", "rw");

byte[] bytes = new byte[(int) mi.length()];

mi.read(bytes);

mi.close();

Anyone knows how can i solve this problem?

Thanks.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

How the pocket isn't in the domain of net, i had set the authentication in pocket and the problem was solved.

Thanks.