Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
从服务器获取数据时互联网连接丢失会调用什么异常?我有一个 AsyncTask,我正在从服务器获取 JSON 数据。我的问题是:连接中断时会调用什么异常?我该如何实施?
此类问题的一般方法:
(暂时)编写一个捕获所有样式的代码,并在某处写入异常类型。通过故意引发给定的异常来测试它(在您的情况下,您可以中断与互联网的连接)。在你看到异常的类型之后,你可以返回你的代码,而不是 catch all 样式代码来处理特定的异常。
干杯