iteye_10600 2009-01-15 15:21
浏览 1007
已采纳

关于获取 InputStream 输入流的 字节数

现在要获取 InputStream 流的字节数,
所以用 available()获取字节长度 ,结果出错 报IO异常

下面为代码部分:
调用下面方法时,会传入一个有内容的 输入流

[code="java"]
public final void writeInputStream(InputStream in,OutputStream out){
try
{

int len = in.available(); //这一行报错!!!

       byte[] data=new byte[1024*1024*10];
       int bytesRead=0;
       while((bytesRead=in.read(data,0,1024*1024*10))!=-1)
       {
         out.write(data, 0, bytesRead);
       }
       in.close();
       out.close();           

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

[/code]
[b]问题补充:[/b]
为什么
[code="java"]
while((bytesRead=in.read(data,0,1024*1024*10))!=-1)

[/code]
这个方法可以获取流的字节数,
而我直接用 in.available(); 获取字节数却出错,并且有 IOException?

  • 写回答

3条回答 默认 最新

  • bohemia 2009-01-15 19:38
    关注

    [quote]available
    public int available()
    throws IOException
    Returns the number of bytes that can be read (or skipped over) from this input stream without blocking by the next caller of a method for this input stream. The next caller might be the same thread or or another thread. [/quote]

    请参照JavaAPI;

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 ansys fluent计算闪退
  • ¥15 有关wireshark抓包的问题
  • ¥15 需要写计算过程,不要写代码,求解答,数据都在图上
  • ¥15 向数据表用newid方式插入GUID问题
  • ¥15 multisim电路设计
  • ¥20 用keil,写代码解决两个问题,用库函数
  • ¥50 ID中开关量采样信号通道、以及程序流程的设计
  • ¥15 U-Mamba/nnunetv2固定随机数种子
  • ¥15 vba使用jmail发送邮件正文里面怎么加图片
  • ¥15 vb6.0如何向数据库中添加自动生成的字段数据。