我正在尝试将部分用 Java (Android) 编写的代码移动到 C# (Mono for android),但我一直在寻找一种方法来做到这一点。Java中的部分代码如下:
private Bitmap decodeFile(File f){
try {
BitmapFactory.Options o = new BitmapFactory.Options();
o.inJustDecodeBounds = true;
BitmapFactory.decodeStream(new FileInputStream(f), null, o);
...
} catch(FileNotFoundException ex){
}
确切地说,根据DecodeStream的第一个参数的要求从Java.IO.File
to转换是我的问题。这个语句应该如何改写?System.IO.Stream