コード例 #1
0
ファイル: AccountManageImpl.java プロジェクト: jacksenma/-2
  @Override
  public boolean deleteAccount(String name) throws RemoteException {
    // TODO Auto-generated method stub
    FinancialmanService fs = new AccountIO();
    try {

      if (fs.deleteAcc(name)) {
        HostLog.addMes("删除账户名称为" + name + " 的银行账户" + "\n");
        return true;
      }

    } catch (Exception e) {
      // TODO Auto-generated catch block
      e.printStackTrace();
    }
    return false;
  }