我在 android(图片对象)上保存和加载图片时遇到问题。这是我写入内部存储的代码(我不确定它是否正常工作):
FileOutputStream fos = null;
Picture l0 = new Picture();
fos = openFileOutput("layer0", Context.MODE_PRIVATE);
InputStream is = new ByteArrayInputStream(layer0.getBytes());
SVG svg = SVGParser.getSVGFromInputStream(is);
l0 = svg.getPicture();
l0.writeToStream(fos);
fos.close();
我怎样才能读回这张图片?请检查这种存储方式。干杯。