gpt4 book ai didi

android - 在 Android 平板电脑 (3.1) 的内存中写入和读取图像时遇到问题

转载 作者:行者123 更新时间:2023-11-29 02:09:31 25 4
gpt4 key购买 nike

我认为这不会太难,但过去几个小时我一直在用头撞 table ,非常感谢您的帮助。本质上,我想从 url 获取图像,将其保存到内部存储器(不是 sd 卡),然后能够检索该图像并在以后使用 ImageView 显示它。

这就是我如何从 url 获取图片并将它们写入内存(url 存储在“pics”中):

                    String urlstring = pics[l][w];
if (urlstring != null){
try {
URL url = new URL(urlstring);
InputStream input = url.openStream();
FileOutputStream output = openFileOutput(("specimage"+l) + ("" +w+".jpg"), MODE_PRIVATE);


byte[] buffer = new byte[input.available()];
int n = input.read(buffer, 0, buffer.length);
while (n >= 0) {
output.write(buffer, 0, buffer.length);
n = input.read(buffer, 0, buffer.length);
}
output.close();
input.close();
} catch (Exception e) {
GlobalState.popupMessage(homePage, "Error", "Files could not be stored on disk");
}
}

这就是我尝试检索它们的方式(路径是文件名):

private Bitmap getPic(String path){
FileInputStream in;
Bitmap bMap = null;
BufferedInputStream buf;
try {
in = openFileInput(path);
buf = new BufferedInputStream(in);
byte[] bMapArray= new byte[buf.available()];
buf.read(bMapArray);
bMap = BitmapFactory.decodeStream(buf);
if (in != null) {
in.close();
}
if (buf != null) {
buf.close();
}
} catch (Exception e) {
System.out.println("excep.");
}
if (bMap == null) System.out.println("null");
return bMap;
}

如果我这样做,图片不会显示,但程序不会崩溃。不会触发异常。但是,bMap 的值为 null。我还在日志中收到这条奇怪的消息:

DEBUG/skia(19358): --- SkImageDecoder::Factory 返回空值

请让我知道我做错了什么。我一直在搜查我的大脑无济于事。我应该提到我在 ui 线程中执行了 setImageBitmap。

最佳答案

试试这个,(替换为你的)让我知道发生了什么,

ImageView  img = (ImageView)findViewById(R.id.imgView1);
FileInputStream in;
Bitmap bMap = null;
BufferedInputStream buf;
try {
in = openFileInput("icon.png");
buf = new BufferedInputStream(in);
byte[] bMapArray= new byte[buf.available()];
buf.read(bMapArray);
bMap = BitmapFactory.decodeByteArray(bMapArray,0,bMapArray.length);
img.setImageBitmap(bMap);
if (in != null) {
in.close();
}
if (buf != null) {
buf.close();
}
} catch (Exception e) {
System.out.println("excep.");
}

关于android - 在 Android 平板电脑 (3.1) 的内存中写入和读取图像时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8306019/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com