在另一个 try 块中使用 try catch 语句会有任何价值吗?
try{
// some code...
try{
// some code...
}catch(Exception ex){
ex.printStackTrace();
}
// some code...
}catch(Exception ex){
ex.printStackTrace();
}