登录
首页 » Java Develop » Java 2入门经典:JDK 5 SOLUTION 这本书综合介绍了使用J2SE(Java 2 Standard Edition)5.0或更高版本开发动态程...

Java 2入门经典:JDK 5 SOLUTION 这本书综合介绍了使用J2SE(Java 2 Standard Edition)5.0或更高版本开发动态程...

于 2022-11-18 发布 文件大小:582.23 kB
0 158
下载积分: 2 下载次数: 1

代码说明:

Java 2入门经典:JDK 5 SOLUTION 这本书综合介绍了使用J2SE(Java 2 Standard Edition)5.0或更高版本开发动态程序的过程,阐述了Java语言的各个方面,包括Java语言结构和工作原理的基本知识,用大量的实例讲述如何开发功能齐全的Java应用程序,以期帮助读者掌握Java语言的最新特性和Java类库中主要的功能包,积累Java应用环境的使用经验,并在核心技术领域打下坚实的基础。. 本书系统全面、浅显易懂,非常适合没有任何编程经验的初学者阅读,也可作为软件开发人员和高校师生的必备参考书。 通过阅读本书,你可以借助J2SE 5.0这个最新、最出色的Java平台来学习Java编程。J2SE 5.0拥有强大的新特性和新功能,使Java性能产生了巨大的飞跃。 -Java 2 portal classic : JDK 5 SOLUTION this book on the integrated use of J2SE (Java 2 Standard Edition) version 5.0 or higher dynamic program development process. expounded the Java language in all its aspects, including the Java language"s structure and working principle of the basic knowledge, with plenty of examples on how to develop fully functional Java applications, to help readers master the latest Java language features and Java class library major functional package, Java application environment accumulation of experience and core technology in the field to lay a solid foundation. . The book system of comprehensive, sim

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

发表评论

0 个回复

  • Mainly for the management of inventory information, you can add, view, delete, e...
    主要是对库存信息的管理,可以对添加,查看,删除等操作。 代码中详细的解说了界面的设计。-Mainly for the management of inventory information, you can add, view, delete, etc. operations. Code is explained in detail in the interface design.
    2022-06-14 23:35:15下载
    积分:1
  • Java3D显示空间x,y,z坐标轴,需要安装java3D jdk包!
    Java3D显示空间x,y,z坐标轴,需要安装java3D jdk包!-Java3D show space x, y, z axis, the need to install java3D jdk package!
    2022-03-19 20:19:48下载
    积分:1
  • on the category of document processing
    关于文件处理的类-on the category of document processing
    2022-02-04 06:47:44下载
    积分:1
  • Struts图书馆管理系统需要的组件:struts1.2 JSP2.0 Servlet2.4…
    Struts图书馆管理系统 需要组件:struts1.2 jsp2.0 servlet2.4 jdk1.5 tomcat5.5 jstl1.1-Struts library management system needs components : struts1.2 jsp2.0 servlet2.4 jdk1.5 tomcat5.5 jstl1.1
    2022-02-10 02:53:25下载
    积分:1
  • 野生动物系统的JAVA源码, 野生动物系统的JAVA源码
    野生动物系统的JAVA源码, 野生动物系统的JAVA源码-Wildlife JAVA source systems, wildlife system JAVA source
    2022-02-15 19:02:19下载
    积分:1
  • JDesktop Integration Components (JDIC),这是一个开源的项目,目的是构建消除本机应用程序和 Java 等价物之间差距的组件。...
    JDesktop Integration Components (JDIC),这是一个开源的项目,目的是构建消除本机应用程序和 Java 等价物之间差距的组件。JDIC 单一的 Java API 允许应用程序接进本机操作系统特性,同时保持跨平台支持。它目前提供了本机 Web 浏览器(Internet Explorer 或 Mozilla) 支持、系统托盘支持、文件扩展集成和其他桌面特性。-JDesktop Integration Components (JDIC), this is an open source project to build the elimination of the local Java applications, and the gap between equivalent components. JDIC single Java API access permit applications into the local operating system features, while maintaining cross-platform support. It currently provides a local Web browser (Internet Explorer or Mozilla) support, system tray support, file extensions and other desktop integration features.
    2022-08-26 14:39:22下载
    积分:1
  • extjs sample with spring
    extjs sample with spring
    2022-01-22 05:26:28下载
    积分:1
  • 此类为”替换对话框“所需的类
    此类为”替换对话框“所需的类-such as "replacement dialog," the class
    2022-03-19 21:24:33下载
    积分:1
  • 简介 JavaEE在开发的时候,如果是系统内部常量,一般提倡用枚举常量类,写在单独的类中,但是经常要修改的变量,比如数据源配置,如果存在数据库中,有种浪费。...
    简介 JavaEE在开发的时候,如果是系统内部常量,一般提倡用枚举常量类,写在单独的类中,但是经常要修改的变量,比如数据源配置,如果存在数据库中,有种浪费。但是存在TXT中扩展性不好,就笔者观察,一般的程序员都喜欢把经常修改的常量存在xml文件或者properties文件。 存在xml文件最大的好处是扩展性很好,一般用sax或者dom这两个方向的框架,比如DOM4J,JDOM等。Sun推出的JAXM(Java API for XML Messaging)也是用的DOM4J。由于SAX的处理方式类似流媒体,是逐行的,不需要全部加载。而DOM是全部加载在内存,生成树。因而SAX的读取比DOM性能好,但是修改的话DOM略胜一筹。properties文件的扩展性不如xml,但是有很多xml没法实现的优势,比如加密之类的~ Helloworld 笔者根据自己开发中感受,写了一个工具包,用来体现读取xml或者properties的流程,大家在使用的时候记得修改文件路径。一共包含五个文件.本demo主要是用来模拟读取数据库的账户和密码的,读者可以在此基础上扩展。-Brief introduction JavaEE development at the time, if the system constants are generally used to promote constant enumeration type, write in a separate category, but often want to modify the variables, such as the data source configuration, if the database exist, in one waste. But the existence of bad TXT extension on my observation, the programmers in general are often modified to enjoy the constant existence xml documents or document properties. Xml files exist to expand the biggest benef
    2022-06-01 17:25:12下载
    积分:1
  • < STRUTS入门与项目实践>>中的BBS的源代码
    < STRUTS入门与项目实践>>中的BBS的源代码 -> in the source code of BBS
    2022-07-23 17:58:06下载
    积分:1
  • 696518资源总数
  • 106148会员总数
  • 10今日下载