2

我正在使用下面显示的代码将一个多部分文件上传到 Google 应用引擎。在 apache commons 文件上传器的帮助下,我成功地将文件上传到 Google 应用引擎。我想验证文件大小是否为 0 字节。为此,我验证了 Google 应用引擎和 apache 公共文件上传器以检查文件大小,但我失败了。我们有什么方法可以找到文件大小。请给我一个想法。

我的小服务程序

ServletFileUpload upload = new ServletFileUpload();
FileItemIterator iter;
iter = upload.getItemIterator(request);
while (iter.hasNext()) {
item = iter.next();
String fileName =  item.getName();
String fieldName = item.getFieldName();
if (item.isFormField()) {
String fieldValue = Streams.asString(item.openStream());
}
InputStream is1 = item.openStream();
try {
FileService fileService = FileServiceFactory.getFileService();
AppEngineFile file = fileService.createNewBlobFile(mime, fileName);
boolean lock = true;
 FileWriteChannel writeChannel = fileService.openWriteChannel(file, lock);
 byte[] b1 = new byte[BUFFER_SIZE];
int readBytes1;
while ((readBytes1 = is1.read(b1)) != -1) {
 writeChannel.write(ByteBuffer.wrap(b1, 0, readBytes1));
}
writeChannel.closeFinally();
4

1 回答 1

1

您需要将整个is1输入流读入字节缓冲区并查看它的长度。您可以使用此代码段:

public static byte[] getBytes(InputStream is) throws IOException {
    ByteArrayOutputStream buffer = new ByteArrayOutputStream();

    int len;
    byte[] data = new byte[10000];
    while ((len = is.read(data, 0, data.length)) != -1) {
        buffer.write(data, 0, len);
    }

    buffer.flush();
    return buffer.toByteArray();
}
于 2013-02-02T18:50:54.373 回答