2013-01-22 69 views
0

我之前的帖子被刪除了,所以我在這裏重新發布,因爲我沒有得到任何消除此錯誤的線索。當嘗試上傳服務器上的文件時發生java.lang.IndexOutOfBoundsException

錯誤:

java.lang.IndexOutOfBoundsException 
java.io.FileOutputStream.writeBytes(Native Method) 
java.io.FileOutputStream.write(FileOutputStream.java:297) 
com.ninenexus.simplesign.storeanddisplay.StoreAndDisplayImage.doPost(StoreAndDisplayImage.java:85) 
javax.servlet.http.HttpServlet.service(HttpServlet.java:754) 
javax.servlet.http.HttpServlet.service(HttpServlet.java:847) 

代碼:

String contentType = request.getContentType(); 
if ((contentType != null) 
    && (contentType.indexOf("multipart/form-data") >= 0)) 
{ 
    DataInputStream in = new DataInputStream(request.getInputStream()); 
    int formDataLength = request.getContentLength(); 
    byte dataBytes[] = new byte[formDataLength]; 
    int byteRead = 0; 
    int totalBytesRead = 0; 
    while (totalBytesRead < formDataLength) 
    { 
     byteRead = in.read(dataBytes, totalBytesRead, formDataLength); 
     totalBytesRead += byteRead; 
    } 
    String file = new String(dataBytes); 
    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; 
    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; 

    saveFile = "d:/" + saveFile; 

    try 
    {    
     File f = new File(saveFile);    
     FileOutputStream fileOut = new FileOutputStream(f); 
     fileOut.write(dataBytes, startPos, (endPos - startPos)); // Line 85 
     fileOut.flush(); 
     fileOut.close(); 
    } 
    catch(...) 
    { 
     ... 
    } 
} 
else 
{ 
    ... 
} 

線的輸出無。 85 is

dataBytes=[[email protected], startPos=142, (endPos - startPos)=75944. 

我想從用戶通過輸入type ='文件',然後將其保存在使用此代碼的目錄中的文件。它在tomcat服務器上正常工作。文件被保存在目錄中。但是當我創建戰爭文件並將其上傳到服務器上時。嘗試在主服務器上運行此代碼時,出現此錯誤。沒有解決這個問題的線索。幫助真的很感激。

+0

你能打印'dataBytes.length'嗎? – partlov

+0

'dataBytes.length = 76132' –

+1

@ shabbir.rang可以肯定的是,這些數字來自您的主服務器(您從哪裏得到錯誤)? – Henry

回答

1

錯誤很可能是由您確定開始和結束位置的「有趣」方式引起的。您使用字節進行字符串轉換,並使用機器的當前默認編碼返回。很可能,您的開發和生產環境之間的默認編碼不同。這解釋了環境之間的差異。

對於許多編碼,存在無法解碼爲字符的字節序列。該字符串將包含一些替換字符。當您將字符串轉換回字節序列時,長度可能會與以前不同,並且會出現錯誤的位置。

+0

感謝henry的解釋,但我需要解決方案。有沒有其他方法可以將文件保存在本地以及服務器上? –

+0

我會尋找一些提供多部分支持的庫,請參閱millimoose的建議。 – Henry

0

變化以下行和嘗試..

字符串文件=新的字符串(數據字節); String file = new String(dataBytes,「CP1256」);

int startPos =((file.substring(0,pos))。getBytes())。length; int startPos =((file.substring(0,pos))。getBytes(「CP1256」))。length;

int endPos =((file.substring(0,boundaryLocation))。getBytes())。length; to int endPos =((file.substring(0,boundaryLocation))。getBytes(「CP1256」))。length;

相關問題