我有一个带有SWT浏览器的SWT Java应用程序,该应用程序在启动时显示,以向用户显示我的网站的新闻页面,同时用户也可以查看“实时”帮助文件。
但是,我需要一种方法来检查互联网是否不可用,以便我可以显示帮助和欢迎页面的本地离线副本。
在Mac上,如果没有互联网,会弹出一个对话框,说明:
“页面加载失败并显示错误:无法连接到服务器。”
我想在没有弹出窗口的情况下处理这个问题(显然这对用户来说很烦人),所以我可以在发生这种情况时切换页面。
谢谢!
答案 0 :(得分:2)
使用Detect internet Connection using Java的答案,您可以检查用户是否已连接到互联网,更类似于您的实时帮助已启动并正常工作。然后,如果连接中断或您的帮助不正常,您可以显示本地版本。
这是完整的代码(我还使用了浏览器小部件的片段)
import java.io.IOException;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.UnknownHostException;
import org.eclipse.swt.SWT;
import org.eclipse.swt.SWTError;
import org.eclipse.swt.browser.Browser;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;
public class BrowserWidget {
private final String NET_URL = "http://eclipse.org";
private final String LOCAL_URL = "file:///index.html";
private String url = "";
public BrowserWidget() {
Display display = new Display();
final Shell shell = new Shell(display);
GridLayout gridLayout = new GridLayout();
gridLayout.numColumns = 3;
shell.setLayout(gridLayout);
final Browser browser;
try {
browser = new Browser(shell, SWT.NONE);
} catch (SWTError e) {
System.out.println("Could not instantiate Browser: " + e.getMessage());
display.dispose();
return;
}
GridData data = new GridData();
data.horizontalAlignment = GridData.FILL;
data.verticalAlignment = GridData.FILL;
data.horizontalSpan = 3;
data.grabExcessHorizontalSpace = true;
data.grabExcessVerticalSpace = true;
browser.setLayoutData(data);
shell.open();
if(isInternetReachable()) browser.setUrl(NET_URL);
else browser.setUrl(LOCAL_URL);
while (!shell.isDisposed()) {
if (!display.readAndDispatch())
display.sleep();
}
display.dispose();
}
private boolean isInternetReachable() {
HttpURLConnection urlConnect = null;
try {
// make a URL to a known source
URL url = new URL(NET_URL);
// open a connection to that source
urlConnect = (HttpURLConnection) url.openConnection();
// trying to retrieve data from the source. If there is no connection, this line will fail
urlConnect.getContent();
} catch (UnknownHostException e) {
return false;
} catch (IOException e) {
return false;
} finally {
// cleanup
if(urlConnect != null) urlConnect.disconnect();
}
return true;
}
public static void main(String[] args) {
new BrowserWidget();
}
}
当然,请将NET_URL
和LOCAL_URL
常量设置为适当的URL ..
答案 1 :(得分:0)
以下是我最终如何做到这一点:
我的代码取代了:
~NININTERNETURL~带有'默认'本地网址(我的SWT浏览器检测到本地网址并显示相应的网页)
~INTERNETURL~如果我可以连接到我的服务器,我想去的页面
~INTERNETTESTURL~我服务器上脚本的url基本上是“var HasInternet = true”
<html>
<head>
<meta http-equiv="refresh" content="5;url=~NOINTERNETURL~">
</head>
<body>
<script src="~INTERNETTESTURL~" type="text/javascript"></script>
<script type="text/javascript">
if (typeof HasInternet === 'undefined') {
window.location.href = "~NOINTERNETURL~";
}
else {
window.location.href = "~INTERNETURL~";
}
</script>
<div>
Testing internet connection...
</div>
</body>
</html>