91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

java back功能如何實現

小樊
83
2024-09-20 17:55:29
欄目: 編程語言

在Java中,實現“后退”功能通常涉及到使用瀏覽器的后退按鈕或Java Web應用程序中的歷史記錄。這里有兩種情況:

  1. 在Web應用程序中實現后退功能:

在Web應用程序中,可以使用java.net.HttpSession對象來存儲瀏覽器的歷史記錄。以下是一個簡單的示例:

import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;

public class BackButtonServlet extends HttpServlet {
    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        HttpSession session = request.getSession();
        session.setAttribute("backUrl", request.getRequestURI());
    }

    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        doGet(request, response);
    }
}

然后,在JSP頁面中,可以使用以下JavaScript代碼來實現后退功能:

<script type="text/javascript">
    function goBack() {
        var session = <%= session.getAttribute("backUrl") %>;
        if (session != null) {
            window.location.href = session;
        } else {
            window.history.back();
        }
    }
</script>
<button onclick="goBack()">后退</button>
  1. 在桌面應用程序中實現后退功能:

在桌面應用程序中,可以使用java.awt.Desktop類和java.net.URI類來實現后退功能。以下是一個簡單的示例:

import java.awt.*;
import java.awt.event.*;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;

public class BackButton implements ActionListener {
    private JFrame frame;

    public BackButton(JFrame frame) {
        this.frame = frame;
    }

    @Override
    public void actionPerformed(ActionEvent e) {
        try {
            Desktop desktop = Desktop.isDesktopSupported() ? Desktop.getDesktop() : null;
            if (desktop != null && desktop.isSupported(Desktop.Action.BROWSE)) {
                URI uri = new URI(frame.getUrl());
                desktop.browse(uri.toURL().toURI());
            } else {
                frame.dispose();
            }
        } catch (IOException | URISyntaxException | InterruptedException ex) {
            ex.printStackTrace();
        }
    }
}

在這個示例中,BackButton類實現了ActionListener接口,并在按鈕被點擊時執行actionPerformed方法。這個方法嘗試使用Desktop類打開瀏覽器并導航到當前窗口的URL。如果無法使用Desktop類,則關閉窗口。

0
苏尼特左旗| 黑龙江省| 邓州市| 阳原县| 修水县| 松桃| 江川县| 金乡县| 罗定市| 五大连池市| 全南县| 定结县| 安吉县| 从化市| 台湾省| 阿尔山市| 罗平县| 哈尔滨市| 新乡县| 黄龙县| 靖州| 太谷县| 日照市| 南安市| 莱西市| 樟树市| 沛县| 莎车县| 玉龙| 衡山县| 大余县| 英超| 错那县| 湖州市| 彰化市| 随州市| 浦城县| 东丽区| 若羌县| 达拉特旗| 新龙县|