多单位版国产化地质资料管理系统
zs
2025-12-18 4f0d9bde31a80f6279e26466250da7716eec627f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<%@ 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>