4

我正在尝试将图像保存到parse.com。我需要将其转换为字节数组。我决定尝试这样做的方法是使用apache commons-io。它不能正常工作。这是我的代码片段;

private void saveImage() throws IOException {
    // TODO Auto-generated method stub

    InputStream header = new FileInputStream("/ClashMMA/res/drawable-hdpi/beatdown.jpg");

    ParseFile file = new ParseFile(toByteArray(header));
    try{
        file.save();
    } catch (ParseException e) {
        e.printStackTrace();
    }

    ParseObject displayImage = new ParseObject("displayImage");
    displayImage.put("header", file);
    try{
        displayImage.save();
    } catch (ParseException e1){
        e1.printStackTrace();
    }
}


private byte[] toByteArray(InputStream header) throws IOException {
    // TODO Auto-generated method stub
     ByteArrayOutputStream buffer = new ByteArrayOutputStream();
        int l;
        byte[] data = new byte[1024];
        while ((l = header.read(data, 0, data.length)) != -1) {
          buffer.write(data, 0, l);
        }
        buffer.flush();
        return buffer.toByteArray();

}

我的错误是这样的;

java.io.FileNotFoundException: /ClashMMA/res/drawable-hdpi/beatdown.jpg: open failed: ENOENT (No such file or directory)

但我确定该文件在那里,因为我去了我的文件目录(在 Eclipse 中),右键单击,然后单击Copy Qualified Name. 这基本上复制了文件路径。我尝试了其他一些路径,比如在我的计算机上和我的src文件夹中。有人可以告诉我我做错了什么吗?为什么它实际上不读取文件?请详细解释。

4

1 回答 1

5

Eclipse 项目中的文件不在(真实的或模拟的)Android 文件系统中,而这正是 AndroidFileInputStream正在寻找的地方。(有充分的理由!Eclipse 的主机文件系统不会出现在真正的 Android 设备上。)

你基本上有两个选择:

于 2013-05-05T03:52:56.333 回答