BufferedInputStream in=new 
BufferedInputStream(new 
FileInputStream("E:/graduate/images/icon.jpg"));
ByteArrayOutputStream out=new ByteArrayOutputStream(1024);
Log.i("wwwwwwwwww", "Avaiable bytes "+in.available());
byte[] temp=new byte[1024];
int size=0;
while((size=in.read(temp))!=-1)
out.write(temp, 0, size);
in.close();
byte[] content=out.toByteArray();
return content;总是出错:
java.io.FileNotFoundException: /E:/graduate/images/icon.jpg: open failed: ENOENT (No such file or directory)求大神帮忙,这是为什么?