<%@ page language="java" %>
<HTml>
<HEAD><TITLE>Display file upload form to the user</TITLE></HEAD>
<% // for uploading the file we used Encrypt type of multipart/form-data and input of file type to browse and submit the file %>
<BODY> <FORM ENCTYPE="multipart/form-data" ACTION="teste1.jsp" METHOD=POST>
<br><br><br>
<center><table border="2" >
<tr><center><td colspan="2"><p align="center"><B>PROGRAM FOR UPLOADING THE FILE</B><center></td></tr>
<tr><td><b>Choose the file To Upload:</b></td>
<td><INPUT NAME="F1" TYPE="file"></td></tr>
<tr><td colspan="2"><p align="right"><INPUT TYPE="submit" VALUE="Send File" ></p></td></tr>
<table>
</center>
</FORM>
</BODY>
</HTML>
<%@ page import="java.io.*" %>
<%
//para obter as informações tipo de conteúdo do cabeçalho de solicitação JSP
String contentType = request.getContentType();
//aqui estamos verificando o tipo de conteúdo não é igual a nulo e, assim como os dados passados da mulitpart / form-data é maior ou igual a 0
if ((contentType != null) && (contentType.indexOf("multipart/form-data") >= 0))
{
DataInputStream in = new DataInputStream(request.getInputStream());
//estamos levando o comprimento de dados Tipo de conteúdo
int formDataLength = request.getContentLength();
byte dataBytes[] = new byte[formDataLength];
int byteRead = 0;
int totalBytesRead = 0;
//este laço converter o arquivo enviado em código de byte
while (totalBytesRead < formDataLength)
{
byteRead = in.read(dataBytes, totalBytesRead, formDataLength);
totalBytesRead += byteRead;
}
String file = new String(dataBytes);
//para salvar o nome do arquivo
String saveFile = file.substring(file.indexOf("filename=\"") + 10);
saveFile = saveFile.substring(0, saveFile.indexOf("\n"));
saveFile = saveFile.substring(saveFile.lastIndexOf("\") + 1,saveFile.indexOf("\""));
int lastIndex = contentType.lastIndexOf("=");
String boundary = contentType.substring(lastIndex + 1,contentType.length());
int pos;
//extrair o índice de arquivo
pos = file.indexOf("filename=\"");
pos = file.indexOf("\n", pos) + 1;
pos = file.indexOf("\n", pos) + 1;
pos = file.indexOf("\n", pos) + 1;
int boundaryLocation = file.indexOf(boundary, pos) - 4;
int startPos = ((file.substring(0, pos)).getBytes()).length;
int endPos = ((file.substring(0, boundaryLocation)).getBytes()).length;
// criar um novo arquivo com o mesmo nome e escrever o conteúdo no novo arquivo
FileOutputStream fileOut = new FileOutputStream(saveFile);
fileOut.write(dataBytes, startPos, (endPos - startPos));
fileOut.flush();
fileOut.close();
%><Br><table border="2"><tr><td><b>Você conseguiu fazer o upload do arquivo pelo nome de:</b>
<% out.println(saveFile); %></td></tr></table> <%
}
%>
Bem-vindo ao fórum.
Por favor, não crie títulos de tópicos SÓ COM MAIUSCULAS e, o postar códigos, siga essas dicas:
Obrigado,
Fiz à alteração, por favor me auxiliem, o código faz o upload, com ele eu consigo pegar e gravar o nome do arquivo no banco, porém não consigui entender ou montar a parte para gravar no diretorio FTP o arquivo que fiz o upload.
Obrigado.