-1

我在 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();

我怎样才能读回这张图片?请检查这种存储方式。干杯。

4

1 回答 1

0

使用函数createFromStream

就像是:

Picture myPic = Picture.createFromStream(openFileInput("layer0"));
于 2012-04-23T11:42:02.290 回答