2

我正在使用 Apache Commons FileUpload 库来上传文件。我想将 InputStream 的内容复制到一个单字节数组中。我怎么能那样做?

try {
    List<FileItem> items = new ServletFileUpload(
            new DiskFileItemFactory()).parseRequest(request);
    for (FileItem item : items) {
        if (item.isFormField()) {
            // Process regular form field (input
            // type="text|radio|checkbox|etc", select, etc).
            String fieldname = item.getFieldName();
            String fieldvalue = item.getString();
            out.println("returned");
        } else {
            // Process form file field (input type="file").
            String fieldname = item.getFieldName();
            String filename = FilenameUtils.getName(item.getName());
            InputStream input = item.getInputStream();
            if (fieldname.equals("file")) {
                // please help me here.
                byte[] allbyte = ???
            }
        }
    }
}
4

3 回答 3

2

使用Apache commons-io库中的IOUtils.toByteArray()实用程序方法:

import org.apache.commons.io.IOUtils;

InputStream input;
byte[] bytes = IOUtils.toByteArray(input);

它给你一个单线。一般来说,试着找到一个现有的库来做你想做的事,Apache commons 库有很多方便的方法。

于 2012-06-28T02:36:05.430 回答
0

使用一个怎么样ByteArrayOutputStream

ByteArrayOutputStream out = new ByteArrayOutputStream();

int b = input.read();
while (b != -1) {
    out.write(b);
    b = input.read();
}
allbyte = out.toByteArray();
于 2012-06-28T00:38:57.177 回答
-1

使用数据输入流。它有一个读取所有字节的 readFully() 方法。

DataInputStream dis = new DataInputStream(inputStream);
byte[] allBytes = new byte[inputStream.available()];
dis.readFully(allBytes);

有关详细信息,请参阅

输入流

数据输入流

于 2012-06-28T01:01:08.403 回答