Servlet--学习笔记(二)重定向

    xiaoxiao2021-03-25  100

    重定向

      在Servlet里面通过重定向,来与其他服务器通信,真的是不得已而为之了。 方法一:

    String site = new String("http://www.liefyuan.top/weixin/88"); response.setStatus(response.SC_MOVED_TEMPORARILY); response.setHeader("Location", site);

    方法二:

    String forward = null; forward = "http://www.liefyuan.top/weixin/88"; response.sendRedirect(forward);
    转载请注明原文地址: https://ju.6miu.com/read-19000.html

    最新回复(0)