我正在使用Aide,它在openInputStream上给我这个奇怪的错误:
The Exception 'java.io.FileNotFoundException' must be caught or declared in the throws clause
我的代码:
case R.id.album:
intent = new Intent("android.intent.action.GET_CONTENT");
intent.setType("image/*");
startActivityForResult(intent, R.id.album);
break;
case R.id.camera:
intent = new Intent("android.media.action.IMAGE_CAPTURE");
intent.putExtra("output", Uri.fromFile(new File(Environment.getExternalStorageDirectory(), "camera.jpg")));
startActivityForResult(intent, R.id.camera);
break;
protected void onActivityResult(int request, int result, Intent data) {
switch (request) {
case R.id.album:
if (result == -1) {
this.paintView.setPicture(BitmapFactory.decodeStream(getContentResolver().openInputStream(data.getData())));
}
case R.id.camera:
if (result == -1) {
try {
File file = new File(Environment.getExternalStorageDirectory(), "camera.jpg");
this.paintView.setPicture(BitmapFactory.decodeFile(file.toString()));
file.delete();
} catch (Exception e) {
}
}
我没有在我的代码中发现任何错误,也许Aide需要更多代码或者它不支持这种代码。 我试图从类似的其他问题中弄清楚但我什么都没发现。 是否有替代代码?
答案 0 :(得分:3)
您的代码的问题在于您正在调用可以抛出FileNotFoundException
的方法...但是您没有在围绕的异常处理程序中捕获异常电话。
我希望它在这里:
this.paintView.setPicture(BitmapFactory.decodeStream(
getContentResolver().openInputStream(data.getData())));
我还会注意到这样的代码:
try {
...
} catch (Exception e) {
// do nothing!
}
被称为"异常挤压"。这是不好的做法。这种事情隐藏了错误。 1)它通常允许"损坏"由异常引起的传播到应用程序的其他部分。 2)它使得准确诊断成为错误的真正原因更加困难。
你正在挤压Exception
,这会让事情变得更糟。
简而言之,如果你习惯性地挤压java.lang.Exception
:
答案 1 :(得分:0)
您正在尝试访问文件或打开文件,很可能会发生FileNotFoundException。
因此您需要先捕获该错误,然后再捕获任何其他类型的异常。
所以你的代码应该是这样的:
minDistanceVector
或者你可以将其扔给试图访问它的其他方法。
with throws clause:
` switch (request) {
case R.id.album:
try{
if (result == -1) {
this.paintView.setPicture(BitmapFactory.decodeStream(getContentResolver().openInputStream(data.getData())));
}
}
catch (FileNotFoundException e) {}
catch (Exception e){}`
如果您正在使用此方法,那么您必须看到,此异常会在您正在使用的其他方法中捕获。