<%@ page language="java" import="java.util.*" pageEncoding="UTF-8" trimDirectiveWhitespaces="true" %>
|
<%
|
String path = request.getContextPath();
|
String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort()
|
+ path + "/";
|
%>
|
<!DOCTYPE HTML>
|
<html>
|
<head>
|
<base href="<%=basePath%>">
|
<title>plsql</title>
|
<script type="text/javascript" src="static/plugins/jquery/jquery.min.js"></script>
|
<script type="text/javascript" src="static/plugins/plsql/swfobject.js"></script>
|
</head>
|
|
<body>
|
<div id="plsqlMainDiv" style="width: 100%;height: 100%">
|
<a href='http://www.adobe.com/go/getflashplayer'>获取 Adobe Flash 播放器</a>
|
</div>
|
|
<iframe id="exportDeviceThmtIframe" style="display: none;"></iframe>
|
<script type="text/javascript">
|
function showPlsqlWindows() {
|
var flashvars = {};
|
var attributes = {};
|
var params = {};
|
// params.wmode = "transparent";
|
flashvars.basePath = '<%=basePath%>';
|
swfobject.embedSWF("<%=basePath%>static/plugins/plsql/PLSQL_Developer.swf", "plsqlMainDiv", "100%", $(window).height()-40, "11.0.0", "expressInstall.swf", flashvars, params, attributes);
|
}
|
|
showPlsqlWindows();
|
|
</script>
|
|
</body>
|
|
</html>
|