登录
首页 » Java » java

java

于 2014-03-08 发布 文件大小:6KB
0 124
下载积分: 1 下载次数: 2

代码说明:

  使用eclipse编写的个人通讯录。相比起来,虽然比较见到那,但是一样可以使用。(person address)

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • Java-0604PH
    Introduction to Computing and Programming with Java
    2014-09-09 21:25:05下载
    积分:1
  • hibernate_day04_v2_all
    使用hibernate框架,包括配置文件,初学者可以以此为模版学习hibernate框架(The use of Hibernate framework, including configuration files, beginners can also be used as a template to learn Hibernate Framework)
    2012-10-31 20:06:38下载
    积分:1
  • JNDI-JAAS
    说明:  J2EE规范的JAAS开发安全实例:介绍了J2EE的安全模式、中间件应用的JAAS实现。(J2EE standard JAAS security development examples : a J2EE security model, middleware applications JAAS achieve.)
    2005-12-13 11:36:23下载
    积分:1
  • MyWeatherActitity
    根据中国天气网,查询城市天气。根据城市编号添加城市,也可根据城市名称查询城市编号(According to Chinese weather site, check the city weather. According to City Code to add the city, can also inquire about the city numbered according to city name)
    2014-05-02 19:28:54下载
    积分:1
  • chatroom
    聊天 现代汉语辞典里对 聊天 的解释为:闲谈,即空闲时候说说话。 网络聊天是什么 咋看上去这是一个非常愚蠢的话题,但细细想来的确还有几分迷惑,上网近六年我总在思考这看似简单却又令人费解的问题,网络是什... (chatroom)
    2010-03-10 18:07:27下载
    积分:1
  • OA-user-check
    web service 调用资料和源码。适用于用友OA系统的用户认证web service。(webservice interface example for oa user login )
    2012-01-01 00:08:48下载
    积分:1
  • CRM(v1.1)
    crm的详细解释于搭建,有助于大家互相学习。有丰富的客户需求以及解决方案(sda wrewf sdf waer erv edwfv ewfsefvs)
    2012-06-06 21:50:38下载
    积分:1
  • ATM
    编写一个控制台程序,模拟在ATM机的存款和取款过程,当输入给定的卡号和密码(初始卡号和密码到数据文件里查看)时,系统能登录ATM系统,根据用户的身份不同显示不同的程序界面;取款   每次取款金额只能为100的倍数,总额不超过2000元,不允许透支。且取款之后,要记录取款的金额和时间。 存款   每次存款金额只能为100的倍数,总额不超过2000元。 修改密码   新密码长度不小于6位,不允许出现6位完全相同的情况,只有旧密码正确,新密码符合要求,且两次输入相同的情况下才可以成功修改密码。(Write a console program to simulate the ATM deposits and withdrawals process, when you enter a given number and password (the initial number and password to the data file view), the system can log in ATM systems, according to the user' s identity different display different The program interface withdrawal amount each withdrawal can only be a multiple of 100, the total does not exceed 2,000 yuan, does not allow overdrafts. And withdrawals after the withdrawal of the amount to be recorded and time. Deposit Amount per Deposit only a multiple of 100, totaling no more than 2,000 yuan. Change Password New Password length not less than six, allowed six identical situation, only the old password is correct, the new password meets the requirements, and enter the same case twice before they can successfully change the password.)
    2013-10-14 22:50:17下载
    积分:1
  • a
    说明:  一个企业信息管理java+sql 用netbeans写的(An enterprise information management java+ sql written with netbeans)
    2014-01-08 18:26:58下载
    积分:1
  • weblogic基本概念
    WebLogic 应用服务器有如下几个基本概念:  Domain: 域是个逻辑概念,用来组织管理一系列的应用服务器实例,也就是下面要解释的server. 域是WebLogic应用服务器中最大的概念,WebLogic应用服务器启动的时候就是以某个域来启动的,它有一个中心配置文件叫config.xml. A domain is the basic administration unit for WebLogic Server instances (servers) that is represented in its own configuration file (config.xml). A domain consists of one or more servers (and their associated resources) that you manage with a single Administration Server. Cluster: 族也是一个逻辑概念,用来分组用途相同的服务器实例,一个域中可以有多个族。 A cluster is a deployment in which multiple WebLogic Server instances (servers) run simultaneously and work together to provide increased scalability and reliability. A cluster appears to clients to be a single WebLogic Server instance. The servers that constitute a cluster can run on the same machine, or be located on different machines. Machine: 机器是物理上的概念,代表一台运行WebLogic应用服务器的实在的机器,包括其IP地址等信息。一个域中可以包括多台机器。(同一台机器可以属于不同的域吗?) A machine is the logical representation of the computer that hosts one or more WebLogic Server instances (servers). WebLogic Server uses configured machine names to determine the optimum server in a cluster to which certain tasks, such as HTTP session replication, are delegated. The Administration Server uses the machine definition in conjunction with the Node Manager application to start remote servers. Server: 服务器,也就是一个应用服务器的实例,用来部署和运行各种J2EE应用程序,也可以来配置各种服务程序。它是WebLogic应用服务器的基本服务单元。一个WebLogic域中一般有一个管理服务器和多个被管理服务器。也就是下面我们要谈到的两个概念。  A server is an instance of WebLogic Server that runs in its own Java Virtual Machine (JVM) and has its own configuration. Each WebLogic Server domain must have one server that acts as the Administration Server. In a typical production environment, the Administration Server is where the Administration Console is run and used to perform administrative tasks. By default, the Administration Server is called myserver. A typical production environment may also have one or more Managed Servers, which are instances of WebLogic Server used to host enterprise applications. Administrative Server: 管理服务器是用来管理配置域的中心点,一般来说,管理服务器上是不部署应用程序的,而是用来统一管理、配置、监控被管理服务器以及部署应用程序到被管理服务器上。一个域中有一台管理服务器。 Managed Server: 被管理服务器是用来部署运行各种应用程序的。一个域中有一台或多台被管理服务器。 Node Manager: 节点管理器是一个单独运行的后台程序,一般运行在被管理服务器的机器上,用来提供远程启动和停止服务器(Server)的功能。
    2014-02-28下载
    积分:1
  • 696518资源总数
  • 105885会员总数
  • 31今日下载