0

我正在查看将文件上传到服务器的上传方法的一些代码。我有一个 int 变量,每次捕获,它都会递增。在代码的最后,计数为零,这意味着没有捕获到异常,但是,发生的输出显示最后一个异常(异常 e)被捕获。结果是,一开始是上传的,然后是说异常被抓到所以上传失败。我是一名初学者 android 开发人员,因此非常感谢任何帮助。

示例代码:

catch(exception e){
   count ++
   //does something that shows that upload was not successful there has been an exception.
}
finally{
   if (count==0){
   //show that the upload was successful 
   }
}
4

1 回答 1

0

检查计数范围是否定义正确。确保将其设为全局变量。

于 2013-07-03T15:09:34.173 回答