<% /* URL設定 */ // URL切替時間 ex. 200704271000L 2007/04/27 10:00 long switch_time = 200705271000L; // 切替前のURL String url_web_1 = "http://www.pia.co.jp/minitheater/index.html"; // 切替後のURL String url_web_2 = "http://www.pia.co.jp/minitheater/minitheater.html"; %> <% /* ************************************************************************ */%> <% /* * ここから先は改変しないでください。 * */%> <% /* ************************************************************************ */%> <% /* * * */%> <% /* * * */%> <% /* * * */%> <% /* * * */%> <% /* * * */%> <% /* * * */%> <% /* * * */%> <% /* * * */%> <% /* * * */%> <% /* * * */%> <% /* * * */%> <% /* * * */%> <% /* * * */%> <% /* * * */%> <% /* * * */%> <% /* * * */%> <% /* * * */%> <% /* * * */%> <% /* * * */%> <% /* * * */%> <% /* * * */%> <% /* ************************************************************************ */%> <%@ import="java.util.*, java.text.*" %> <% /* タイムスタンプの取得 */ String time_stamp = request.getParameter("TIMESTAMP"); if (time_stamp == null ) time_stamp = ""; Calendar cal = Calendar.getInstance(); long curr_time = Long.parseLong(new SimpleDateFormat("yyyyMMddHHmm").format(new Date())); if (time_stamp.trim().length() == 12) { curr_time = Long.parseLong(time_stamp); } %> <% String url = null; if ( switch_time > curr_time ) { url = url_web_1; } else { url = url_web_2; } %> <% response.sendRedirect(url); %>