1
我有下面的代碼工作:當我使用Android上傳文件時,如何重命名文件?
MultipartEntity entity = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE);
entity.addPart("userfile", new FileBody(f));
httppost.setEntity(entity);
HttpResponse response = httpclient.execute(httppost);
的問題是,File f
的名稱是「ABC-temp.jpg」,我希望它是「xyz.jpg」當我把它上傳。我不想重命名設備上的文件,但只有上傳。
要做到這一點,最好的方法是什麼?
,如果你把它上傳在服務器上怎麼樣進行重命名服務器上通過使用Web serivecs –
http://stackoverflow.com/questions/2896733/how-to-rename-a-file-on-sdcard-with -android-application –
@mohammed momn - 在這一點上,讓我們假設我無法做到這一點。 –