0
你好,有人可以告訴我如何創建一個文件並在URl上寫上它。如何創建一個文件並在URL上寫上
其實我正在使用一個小程序,並從theat我想創建一個文件 getCodebase();所以任何機構可以告訴我,我該怎麼辦呢
我已經試過
URL url = new URL(/*url by codebase and the directory with file name*/);
URLConnection connection = url.openConnection();
connection.setDoOutput(true);
OutputStream out = connection.getOutputStream();
,但我使用的一個小程序,並從它沒有工作
請幫我