任何人都可以告诉我如何在URl上立案并写上。
Actually I am using an applet and from theat I want to create a file on getCodebase(); so can any body tell me how can I do it
我曾尝试过
URL url = new URL(/*url by codebase and the directory with file name*/);
URLConnection connection = url.openConnection();
connection.setDoOutput(true);
OutputStream out = connection.getOutputStream();
但它没有工作
请帮助我