当设备互联网不工作(或关闭)时退出程序。 (J汤)
when the device internet does not work (or is turned off) exits the program. (Jsoup)
JSOUP
当设备互联网不工作(或关闭)时退出程序。
但是当互联网 运行.
时它可以正常工作(没有应用程序崩溃)
如果程序在没有网络的情况下进入程序的这个编码部分,程序会崩溃。当我在没有互联网的情况下访问这个编码部分时,程序不应该崩溃。只是一个互联网不可用的敬酒消息就足够了。我该怎么办?
编辑:
问题是当我没有添加 toast 消息时。
如果你要找的只是请求无法正常完成的消息,稍微改变一下catch块应该就可以了:
try {
Document doc = (Document) Jsoup.connect("(warn: here my web)").get();
test1 = doc.text();
} catch (Exception e) {
// TODO your error message here
test1 = "An exception occurred and it wasn't possible to get the document";
// TODO use a logging framework!
e.printStackTrace();
}
JSOUP
当设备互联网不工作(或关闭)时退出程序。
但是当互联网 运行.
时它可以正常工作(没有应用程序崩溃)如果程序在没有网络的情况下进入程序的这个编码部分,程序会崩溃。当我在没有互联网的情况下访问这个编码部分时,程序不应该崩溃。只是一个互联网不可用的敬酒消息就足够了。我该怎么办?
编辑:
问题是当我没有添加 toast 消息时。
如果你要找的只是请求无法正常完成的消息,稍微改变一下catch块应该就可以了:
try {
Document doc = (Document) Jsoup.connect("(warn: here my web)").get();
test1 = doc.text();
} catch (Exception e) {
// TODO your error message here
test1 = "An exception occurred and it wasn't possible to get the document";
// TODO use a logging framework!
e.printStackTrace();
}