为啥我收到 java.io.IOException: Mark has been invalidated?
Posted
技术标签:
【中文标题】为啥我收到 java.io.IOException: Mark has been invalidated?【英文标题】:Why am I getting java.io.IOException: Mark has been invalidated?为什么我收到 java.io.IOException: Mark has been invalidated? 【发布时间】:2011-09-17 18:49:09 【问题描述】:我正在尝试从 url 下载图像,然后对其进行解码。 问题是我不知道它们有多大,如果我立即解码它们,应用程序会因图像太大而崩溃。
我正在执行以下操作,它适用于大多数图像,但其中一些图像会引发 java.io.IOException: Mark has been invalidated
异常。
这不是大小问题,因为它发生在 75KB 或 120KB 的图像上,而不是 20MB 或 45KB 的图像上。
此外,格式并不重要,因为它可能发生在 jpg 或 png 图像中。
pis
是一个InputStream
。
Options opts = new BitmapFactory.Options();
BufferedInputStream bis = new BufferedInputStream(pis);
bis.mark(1024 * 1024);
opts.inJustDecodeBounds = true;
Bitmap bmImg=BitmapFactory.decodeStream(bis,null,opts);
Log.e("optwidth",opts.outWidth+"");
try
bis.reset();
opts.inJustDecodeBounds = false;
int ratio = opts.outWidth/800;
Log.e("ratio",String.valueOf(ratio));
if (opts.outWidth>=800)opts.inSampleSize = ratio;
return BitmapFactory.decodeStream(bis,null,opts);
catch (IOException e)
// TODO Auto-generated catch block
e.printStackTrace();
return null;
【问题讨论】:
【参考方案1】:我想你想解码大图像。我是通过选择图库图片来做到的。
File photos= new File("imageFilePath that you select");
Bitmap b = decodeFile(photos);
“decodeFile(photos)”函数用于解码大图。我认为您需要获取图像 .png 或 .jpg 格式。
private Bitmap decodeFile(File f)
try
//decode image size
BitmapFactory.Options o = new BitmapFactory.Options();
o.inJustDecodeBounds = true;
BitmapFactory.decodeStream(new FileInputStream(f),null,o);
//Find the correct scale value. It should be the power of 2.
final int REQUIRED_SIZE=70;
int width_tmp=o.outWidth, height_tmp=o.outHeight;
int scale=1;
while(true)
if(width_tmp/2<REQUIRED_SIZE || height_tmp/2<REQUIRED_SIZE)
break;
width_tmp/=2;
height_tmp/=2;
scale++;
//decode with inSampleSize
BitmapFactory.Options o2 = new BitmapFactory.Options();
o2.inSampleSize=scale;
return BitmapFactory.decodeStream(new FileInputStream(f), null, o2);
catch (FileNotFoundException e)
return null;
你可以使用 imageView 来显示它。
ImageView img = (ImageView)findViewById(R.id.sdcardimage);
img.setImageBitmap(b);
【讨论】:
但是如何传递包含要转换为位图的信息的 InputStream?¿ @sergi 这是最好的方法。你有一个 InputStream 并且decodeStream()
接受一个输入流参数。
现在我已经以这种方式工作了,但我想看看哪种方式是最好的..
问题是原始问题看起来作者只想解码流。我有同样的问题,但我不能使用 File() 打开流 2 次,因为我正在从 Internet 下载数据。图像总是更小,如 400kB。所以我使用 BufferedInputStreamand 和 reset() 来读取它两次。以上是关于为啥我收到 java.io.IOException: Mark has been invalidated?的主要内容,如果未能解决你的问题,请参考以下文章
我收到“异常 java.io.IOException 失败:/user/hive/warehouse/people/part-r-00001.parquet not a SequenceFile
java.io.IOException: toDerInputStream 拒绝标签类型 77
java.io.IOException:android 连接上的流意外结束
Gradle 构建失败 java.io.IOException:输出 jar 为空