public class Upload extends HttpServlet
{
private static final long serialVersionUID = 1L;
public void init() throws ServletException
{
System.out.println(this.getClass().getName());
}
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
{
//boolean MultipartRequest;
//String PrintWriter;
response.setContentType("text/html");
PrintWriter out=response.getWriter();
MultipartRequest multipartRequest = new MultipartRequest(request,"/home/hadoop/Desktop");
out.println("succcesfully uploaded");
}
public void destroy()
{
System.out.println(this.getClass().getName());
}
}
- 什麼,我需要做的移動uploded到桌面文件夾 直接,而不是直接給文件名,如下
- 和一個要移動的文件上傳文件到歸檔文件夾更多的是如何複製重複太...
public class MoveFile {
public static void main(String[] args) throws IOException {
File sourceFile = new File("/home/hadoop/Desktop/LINUX-KACPER.pdf");
File destinationDir = new File("/home/hadoop/Documents/movedfiles/");
FileUtils.moveFileToDirectory(sourceFile, destinationDir, true);
}
thnkü@maskacovnik這是工作,但我需要太複製重複值u能請幫助我 – nani
我不知道你的意思是重複的值......,你的意思是重寫文件,或者你的意思是子文件夾?如果你的意思是重寫,只是刪除文件,新文件將被粘貼。我已更新我的源代碼,但它沒有測試@nani – maskacovnik
對不起,重複的值其重複文件我的意思是兩個文件具有相同的名稱和數據 – nani