• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            xiaoguozi's Blog
            Pay it forword - 我并不覺的自豪,我所嘗試的事情都失敗了······習(xí)慣原本生活的人不容易改變,就算現(xiàn)狀很糟,他們也很難改變,在過程中,他們還是放棄了······他們一放棄,大家就都是輸家······讓愛傳出去,很困難,也無法預(yù)料,人們需要更細(xì)心的觀察別人,要隨時(shí)注意才能保護(hù)別人,因?yàn)樗麄兾幢刂雷约阂裁础ぁぁぁぁ?/span>
            今天新寫了一個(gè)java文件上傳類,文件類型未限定,大小也未限定,可自己擴(kuò)展,記下筆記
            /*
             * Function:    FileUpload
             * Writer:        JingJiaGuo
             * Date:        09.5.12
             * Mail:        guojingjia@stu.hdu.edu.cn
             
            */

            package JingJiaGuo;

            import javax.servlet.http.*;
            import java.io.*;
            import java.util.*;


            public class FileUpload {
                
            public class FileHoder{
                    
            public String name,filename,contentType;
                    
            public int start,end,length;
                }

                
            public class ValueHoder{
                    
            public String name,value;
                }

                
                
            public ArrayList<FileHoder> arrfile;
                
            public ArrayList<ValueHoder> arrvalue;
                
                
            public String FileNameSuffix(int index){
                    
            if(index<arrfile.size()){
                        
            int pos=arrfile.get(index).filename.lastIndexOf(".");
                        
            return arrfile.get(index).filename.substring(pos);
                    }
            else return null;
                }

                
            public String getFileName(int index){
                    
            if(index<arrfile.size()){
                        
            return arrfile.get(index).filename;
                    }
            else return null;
                }

                
            public int getFileSize(int index){
                    
            if(index<arrfile.size()){
                        
            return arrfile.get(index).length;
                    }
            else return 0;
                }

                
            public String getParamentName(int index){
                    
            if(index<arrvalue.size()){
                        
            return arrvalue.get(index).name;
                    }
            else return null;
                }

                
            public String getParamentValue(int index){
                    
            if(index<arrvalue.size()){
                        
            return arrvalue.get(index).value;
                    }
            else return null;
                }

                
            public void Clear(){
                    arrfile.clear();
                    arrvalue.clear();
                }

                
            public boolean Parse(HttpServletRequest request){
                    arrfile
            =new ArrayList<FileHoder>();
                    arrvalue
            =new ArrayList<ValueHoder>();
                    
            try{
                        String contenttype
            =request.getContentType();
                        String boundary
            ="boundary=";
                        
            int pos=contenttype.indexOf(boundary);
                        boundary
            =contenttype.substring(pos+boundary.length());
                        boundary
            ="--"+boundary;
                        
                        InputStream is
            =request.getInputStream();
                        
            int readlen=0,len=request.getContentLength();
                        buffer
            =new byte[len];
                        
            int read;
                        
            while((read=is.read(buffer,readlen,len-readlen))>0){
                            readlen
            +=read;
                        }

                        
            if(readlen<len){
                            
            return false;
                        }

                         
            int st=byteIndexOf(buffer,boundary,0,len);
                        
            int ed=0;
                        
            while(st>=0){
                            st
            +=boundary.length();// /r/n
                            ed=byteIndexOf(buffer,boundary,st,len);
                            
            if(ed!=-1){                    
                                Process(buffer,st
            +2,ed-2);
                            }

                            
            else break;
                            st
            =ed;
                        }

                    }
            catch(IOException e){
                        e.printStackTrace();
                        
            return false;
                    }

                    
            return true;
                }

                
            private void Process(byte[] buffer,int st,int ed)
                
            throws UnsupportedEncodingException{
                    
            int[] pos=new int[tokens.length];
                    
            for(int i=0;i<tokens.length;++i){
                        pos[i]
            =byteIndexOf(buffer,tokens[i],st,ed);
                    }

                    
            if(pos[1]==-1){
                        ValueHoder vh
            =new ValueHoder();
                        vh.name
            =subBytesString(buffer,pos[0]+ByteLength(tokens[0]),pos[2]);
                        vh.value
            =subBytesString(buffer,pos[4]+ByteLength(tokens[4]),ed);
                        arrvalue.add(vh);
                    }
            else{
                        FileHoder fh
            =new FileHoder();
                        fh.name
            =subBytesString(buffer,pos[0]+ByteLength(tokens[0]),pos[1]);
                        fh.filename
            =subBytesString(buffer,pos[1]+ByteLength(tokens[1]),pos[2]);
                        fh.contentType
            =subBytesString(buffer,pos[3]+ByteLength(tokens[3]),pos[4]);
                        fh.start
            =pos[4]+ByteLength(tokens[4]);
                        fh.end
            =ed;
                        fh.length
            =fh.end-fh.start;
                    
            //    fh.filecontent=subBytesString(buffer,pos[4]+ByteLength(tokens[4]),ed);
                        if(fh.length>0)arrfile.add(fh);
                    }

                }

                
            public void SaveTo(int index,String path)
                
            throws IOException,FileNotFoundException{
                    FileOutputStream fos
            =new FileOutputStream(path);
                    fos.write(buffer,arrfile.get(index).start,arrfile.get(index).length);
                    fos.close();
                }

                
            private  int ByteLength(String str) throws UnsupportedEncodingException{
                    
            byte[] tmp=str.getBytes();
                    
            return tmp.length;
                }

                
            private  String subBytesString(byte[] buffer,int from,int end,String encoding)
                
            throws UnsupportedEncodingException{
                    
            byte[] tmp=new byte[end-from];
                    
            for(int i=from;i<end;i++){
                        tmp[i
            -from]=buffer[i];
                    }

                    
            return new String(tmp,encoding);
                }

                
            private  String subBytesString(byte[] buffer,int from,int end)
                
            throws UnsupportedEncodingException{
                    
            return subBytesString(buffer,from,end,"UTF-8");        
                }

                
            private  int byteIndexOf(byte[] buffer,String src,int begin,int end){
                    
            byte[] boundary=src.getBytes();
                    
            for(int i=begin;i<end;i++){
                        
            boolean find=true;
                        
            for(int j=0;j<src.length()&&j+i<end;j++){
                            
            if(buffer[i+j]!=boundary[j]){
                                find
            =false;
                                
            break;
                            }

                        }

                        
            if(find){
                            
            return i;
                        }

                    }

                    
            return -1;
                }

                
            private byte[] buffer;
                
            private String[] tokens={"name=\"",
                    "\"; filename=\"",
                    
            "\"\r\n",
                    "Content-Type: ",
                    
            "\r\n\r\n"
                    }
            ;
            }


            example:
            <%@ page language="java" contentType="text/html; charset=utf-8"
                pageEncoding
            ="utf-8"%>
                
            <%@page import="java.io.*" %>
                
            <%@page import="JingJiaGuo.*" %>
            <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
            <html>
            <head>
            <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
            <title>Insert title here</title>
            </head>
            <body>
            <%
                FileUpload myfile
            =new FileUpload();
                myfile.Parse(request);
                
            for(int i=0;i<myfile.arrfile.size();i++){
                    myfile.SaveTo(i,
            "D:\\"+myfile.getFileName(i));
                    out.write(myfile.getFileName(i)
            +"<br>");
                    out.write(myfile.arrfile.get(i).contentType
            +"<br>");
                    out.write(myfile.FileNameSuffix(i));
                    
            //out.write(myfile.arrfile.get(i).filecontent.length()+"<br>");
                }

                myfile.Clear();
            %>
            </body>
            </html>
            posted on 2009-05-12 22:57 小果子 閱讀(233) 評論(0)  編輯 收藏 引用 所屬分類: 學(xué)習(xí)筆記
            一本久久a久久精品vr综合| 婷婷久久五月天| 国产精品欧美久久久久天天影视| 精品国产乱码久久久久久浪潮| 久久精品中文騷妇女内射| 久久国产三级无码一区二区| 国产精品久久一区二区三区| 狠狠色综合网站久久久久久久高清| 国产产无码乱码精品久久鸭| 亚洲av日韩精品久久久久久a| 久久只有这精品99| 93精91精品国产综合久久香蕉 | 久久久久久国产精品免费免费| 精品久久久中文字幕人妻| 久久人人爽人人爽人人爽| 国产成人久久777777| 久久婷婷五月综合97色| 欧美喷潮久久久XXXXx| 青草久久久国产线免观| 伊人色综合久久天天网| 久久亚洲精品成人无码网站| 久久人人爽人人爽人人片AV东京热| 91超碰碰碰碰久久久久久综合| 久久人人爽人人爽人人AV东京热| 天天综合久久一二三区| 精品欧美一区二区三区久久久| 精品熟女少妇av免费久久| 久久精品国产亚洲AV蜜臀色欲| 欧美精品一区二区久久| 亚洲国产精品无码久久九九| 精品一久久香蕉国产线看播放| 1000部精品久久久久久久久| 99久久99这里只有免费的精品| 天天躁日日躁狠狠久久 | a高清免费毛片久久| 国产V综合V亚洲欧美久久| 久久久久久久久久久久中文字幕 | 中文字幕无码久久人妻| 久久夜色精品国产噜噜亚洲a| 久久综合色老色| 中文字幕久久精品无码|