如果发生异常,我有一些要执行的代码。但是该代码也可以生成异常。但我从未见过有人在另一个 try/catch 中执行 try/catch。
是我在做什么不好的做法,也许有更好的方法来做到这一点:
Uri uri = Uri.parse("some url");
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
try
{
startActivity(intent);
}
catch (ActivityNotFoundException anfe)
{
// Make some alert to me
// Now try to redirect them to the web version:
Uri weburi = Uri.parse("some url");
try
{
Intent webintent = new Intent(Intent.ACTION_VIEW, weburi);
startActivity(webintent);
}
catch ( Exception e )
{
// Make some alert to me
}
}
这似乎有点尴尬。有什么可能有问题吗?