⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 atmack.txt

📁 j2ee tutorial
💻 TXT
字号:
<%--
 
  Copyright 2001 Sun Microsystems, Inc. All Rights Reserved.
  
  This software is the proprietary information of Sun Microsystems, Inc.  
  Use is subject to license terms.
  
--%>

<%@ page import="java.util.*,com.sun.ebank.util.*" %>

<center>
<jsp:useBean id="beanManager" class="com.sun.ebank.web.BeanManager" scope="application"/>
<jsp:useBean id="atmBean" class="com.sun.ebank.web.ATMBean" scope="request"/>
<%
   Date currentDate = new Date();
   int currentMonth = DateHelper.getMonth(currentDate);
   int currentYear = DateHelper.getYear(currentDate);
   ResourceBundle messages = (ResourceBundle)session.getAttribute("messages");
%>
<%=messages.getString("CustomerString")%> <jsp:getProperty name="atmBean" property="operationString" /> $<jsp:getProperty name="atmBean" property="amount"/> <jsp:getProperty name="atmBean" property="prepString" /> <a href="<%=request.getContextPath()%>/accountHist?accountId=<%= atmBean.getAccountId() %>&date=0&year=<%=currentYear%>&sinceMonth=<%=currentMonth%>&sinceDay=1&beginMonth=<%=currentMonth%>&beginDay=1&endMonth=<%=currentMonth%>&endDay=1&activityView=0&sortOption=0"><%=atmBean.getSelectedAccount().getDescription()%></a>.
<p><%=messages.getString("BalanceString")%> $<%= atmBean.getSelectedAccount().getBalance() %>.
</center>






⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -