jsp 에서 페이지 순 io 스 트림 업로드 파일 구현
5565 단어 파일 업로드
<%@ page language="java" import="java.util.*" pageEncoding="gb2312"%>
<%@page import="java.io.*"%>
<%@page import="java.sql.*"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>My JSP 'Xs.jsp' starting page</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"/>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<%!
// ISO-8859-1
public String codeToString(String str) {
String s = str;
try {
byte tempB[] = s.getBytes("ISO-8859-1");
s = new String(tempB);
return s;
}
catch (Exception e) {
return s;
}
}
%>
<%
//
String tempFileName = new String("tempFileName1");
// D , tempFileName
File tempFile1 = new File("D:/", tempFileName);
// , ( )
FileOutputStream outputFile1 = new FileOutputStream(tempFile1);
// ( )
InputStream fileSource1 = request.getInputStream();
// 1000kb
byte b[] = new byte[1000];
int n;
// while , , -1, -1 ,
while ((n = fileSource1.read(b)) != -1) {
outputFile1.write(b, 0, n); // n b outputFile1 , 0
}
//
outputFile1.close();
//
fileSource1.close();
// RandomAccessFile . ( ) , File 。
// FileDescriptor 。
//mode 。 :
//"r" 。 write IOException。
//"rw" 。 , 。
//"rws" , "rw", 。
//"rwd" , "rw", 。
RandomAccessFile randomFile1 = new RandomAccessFile(tempFile1, "r");
//
randomFile1.readLine();
// String
String FilePath = randomFile1.readLine();
//
if(FilePath == null)
{
FilePath = "";
}else
{
// \\
int position = FilePath.lastIndexOf('\\');
// (position + 1, FilePath.length() - 1) ISO-8859-1 ( )
String filename = codeToString(FilePath.substring(position + 1, FilePath.length() - 1));
// randomFile1 , 。
randomFile1.seek(0);
//
long forthEnterPosition = 0;
//
int forth = 1;
while ((n = randomFile1.readByte()) != -1 && (forth <= 4))
if (n == '
') {
// 。
forthEnterPosition = randomFile1.getFilePointer();
forth++;
}
// ( ServletContext.getRealPath("/") )
File FileUploadDir = new File(request.getSession().getServletContext().getRealPath("/"), "upLoadFile");
// 。
FileUploadDir.mkdir();
// ,
File saveFile1 = new File(request.getSession().getServletContext().getRealPath("/") + "upLoadFile/", filename);
// ( ) ,
RandomAccessFile randomFile2 = new RandomAccessFile(saveFile1, "rw");
// randomFile2 randomFile1
randomFile1.seek(randomFile1.length());
// randomFile1 endPosition
long endPosition = randomFile1.getFilePointer();
int j = 1;
while ((endPosition >= 0) && (j <= 4)) {
endPosition--;
randomFile1.seek(endPosition);
if (randomFile1.readByte() == '
')
j++;
}
// randomFile1
randomFile1.seek(forthEnterPosition);
// randomFile1 startpoint
long startPoint = randomFile1.getFilePointer();
// -1. '
',
while (startPoint < endPosition - 1) {
// randomFile2 randomFile1 ..
randomFile2.write(randomFile1.readByte());
// randomFile1
startPoint = randomFile1.getFilePointer();
}
// randomFile2
randomFile2.close();
// randomFile1
randomFile1.close();
//
tempFile1.delete();
// xx
out.print(" :" + filename + " !<br>");
}
%>
<form action="Xs.jsp" method=post enctype="multipart/form-data">
<input type="file" name="upfile" size="30">
<br>
<input type="submit" name="submit" value="commit">
</form>
</body>
</html>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
【Laravel】 CSV 파일 업로드의 검증이 통과되지 않은 원인화면에서 CSV아일의 업로드를 하는 기능을 만들게 되어, 아무것도 없는 채로 구현했으므로, 조금 실행해 볼까와 동작 확인한 바, 밸리데이션이 통과하지 않는다. 가볍게 빠져서 해결까지의 흐름을 적어 둡니다. 이번에는별...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.