已成功发送包含多张图片的彩信:
Followed these steps发送彩信,并在andorid数据库中添加图片。
问题:我在1 mms中有3张图像,并且不知道如何在Android数据库中对单个MMS进行全部保存。
我试过通过修改给定参考中的方法来保存单个MMS中的多个图像。
private static Uri createPart(Context context, String id,
ArrayList<SentMMSVo> sentMMS2) throws Exception {
ContentValues mmsPartValue = new ContentValues();
mmsPartValue.put("mid", id);
mmsPartValue.put("ct", "image/png");
mmsPartValue.put("cid", "<" + System.currentTimeMillis() + ">");
Uri partUri = Uri.parse("content://mms/" + id + "/part");
Uri res = context.getContentResolver().insert(partUri, mmsPartValue);
Log.e(">>>>>>>", "Part uri is " + res.toString());
for (int i = 0; i < sentMMS2.size(); i++) {
// Add data to part
OutputStream os = context.getContentResolver()
.openOutputStream(res);
ByteArrayInputStream is = new ByteArrayInputStream(sentMMS2.get(i)
.getData());
byte[] buffer = new byte[256];
for (int len = 0; (len = is.read(buffer)) != -1;) {
os.write(buffer, 0, len);
}
os.close();
is.close();
}
return res;
}
此方法将保存单个图像。 它保存图像1,然后将新图像字节覆盖为前一个图像。
如何在单个彩信中保存多个图像。
答案 0 :(得分:0)
更新找到的解决方案:
在android数据库中保存单个mms中的多个图像。我只需要修改上面的内容。
逻辑:我们必须为单个mms创建多个部分。
private static Uri createPart(Context context, String id,
ArrayList<SentMMSVo> sentMMS2) throws Exception {
ContentValues mmsPartValue = new ContentValues();
mmsPartValue.put("mid", id);
mmsPartValue.put("ct", "image/png");
for (int i = 0; i < sentMMS2.size(); i++) {
// Add data to part
mmsPartValue.put("cid", "<" + System.currentTimeMillis() + ">");
Uri partUri = Uri.parse("content://mms/" + id + "/part");
Uri res = context.getContentResolver().insert(partUri ,mmsPartValue);
Log.e(">>>>>>>", "Part uri is " + res.toString());
OutputStream os = context.getContentResolver()
.openOutputStream(res);
ByteArrayInputStream is = new ByteArrayInputStream(sentMMS2.get(i)
.getData());
byte[] buffer = new byte[256];
for (int len = 0; (len = is.read(buffer)) != -1;) {
os.write(buffer, 0, len);
}
os.close();
is.close();
}
return res;
}
答案 1 :(得分:-1)
这可能对您有所帮助,本教程演示了如何从SD卡发送多个图像。