A
Angel Lowelle
I have problem to create a file in remote server, I got exception when
I create a file in remote server. Maybe I couldn't do in the following
way? When I tested this code to write the file in the same server, it
is fine. I already give the write permission in the images folder. I
don't know what went wrong, please advice. thanks
File file = new File("http://another_server/images/file1");
output = new BufferedWriter(new FileWriter(file));
output.write(text);
I create a file in remote server. Maybe I couldn't do in the following
way? When I tested this code to write the file in the same server, it
is fine. I already give the write permission in the images folder. I
don't know what went wrong, please advice. thanks
File file = new File("http://another_server/images/file1");
output = new BufferedWriter(new FileWriter(file));
output.write(text);