Java核心技术,第八版 Java核心技术. 卷I. 基础篇 各个章节中程序源码
上传时间: 2013-12-02
上传用户:3到15
Java has become a confusing world. Five years ago, there were few decisions to make once you started programming in Java—you used AWT for graphical user interfaces, sockets for network programming, and hacked together everything else you needed. Since then, though, the APIs available for the Java language have grown, and grown. . . and grown. Now you can dabble in Swing, servlets, Enterprise JavaBeans (EJB), JavaMail, and more. Additionally, there are now packages of APIs, like the Java 2 Micro Edition (J2ME) and Java 2 Enterprise Edition (J2EE). While these packages seem to be nicely wrapped bundles of useful APIs, they don t help the average developer figure out how to piece together the APIs contained in these packages. Though it s simple to find documentation on the individual APIs, getting the "big picture" is difficult, at best. One of the most interesting, but difficult, aspects of Java today is building Java enterprise applications using the J2EE package.
标签: confusing decisions become world
上传时间: 2013-12-30
上传用户:haoxiyizhong
Master the essentials of concurrent programming,including testing and debugging This textbook examines languages and libraries for multithreaded programming. Readers learn how to create threads in Java and C++, and develop essential concurrent programming and problem-solving skills. Moreover, the textbook sets itself apart from other comparable works by helping readers to become proficient in key testing and debugging techniques. Among the topics covered, readers are introduced to the relevant aspects of Java, the POSIX Pthreads library, and the Windows Win32 Applications Programming Interface.
标签: programming essentials concurrent debugging
上传时间: 2013-12-20
上传用户:fxf126@126.com
JWebChart is a simple package to allow anyone to render complex charts using a Java Servlet. The product was primarily written to allow Warfare to render charts from data sources, which as a tool kit is specifically design for people with no programming knowledge
标签: JWebChart Servlet complex package
上传时间: 2013-12-19
上传用户:Pzj
本书主要介绍了核心语言、核心Java库、服务器端Java技术、客户端Java技术和企业级Java技术。其中 核心语言部分讨论了语法、面向对象编程特征和—些关键技术;核心Java库部分讨论了输入/输出、模式匹配、 文件锁、映射的I/O技术以及数据结构与集合;服务器端Java技术部分讨论了JFC/Swing CGI开发、Applet、容器布局以及图形编程等技术;企业级Java技术部分讨论了JDBC API、EJB体系结构的基础知识、Java平台安全方案以及XML。 本书结构严谨、语言流畅,是一个学习Java 2最新技术的综合参考书,适合各种层次的Java编程人员使用。
上传时间: 2017-05-05
上传用户:pkkkkp
The computing world has undergone a revolution since the publication of The C Programming Language in 1978. Big computers are much bigger, and personal computers have capabilities that rival mainframes of a decade ago. During this time, C has changed too, although only modestly, and it has spread far beyond its origins as the language of the UNIX operating system
标签: Programming publication revolution The
上传时间: 2017-05-16
上传用户:thinode
How to control the time s equence of LM3033B- 0BR3 LCD module by C51 programming was dis cus s ed in this paper. In this way the LCD module was driven by parallel communication and the characters and graphics could be were narrated in detail.
标签: programming control equence module
上传时间: 2017-05-29
上传用户:熊少锋
java开发思想 1 :介绍对象 2 :一切都是对象 3 :控制计划 4 :初始化和清除 5 :隐藏实现 6 :重用类 7 :多态性 8 :接口与内部类 9 :错误处理的例外情况 10 :检测类型 11 :馆藏的物体 12 : Java的I / O系统 13 :并发 14 :创建Windows和程序 15 :发现问题 16 :分析与设计
上传时间: 2017-07-11
上传用户:skfreeman
JavaServer Faces (JSF) is the “offcial” component-based view technology in the Java EE web tier. JSF includes a set of predefned UI components, an event-driven programming model, and the ability to add third-party components. JSF is designed to be extensible, easy to use, and toolable. This refcard describes the JSF development process, standard JSF tags, the JSF expression language, and the faces-confg.xml confguration fle.
标签: component-based JavaServer technology the
上传时间: 2014-01-12
上传用户:songyue1991
java 线程 静态锁,对象锁, synchronized 是锁方法还是锁对象?还是锁类?如何实现?? 部分代码如下, public static Object lock=new Object() //静态锁,锁类,不是锁对象了!!所以两个线程同时 运行两个 TestThread 的execute( ),也可以同步!!! public void execute(){ // synchronized(lock){ for(int i=0 i<20 i++){ try { Thread.sleep(30) } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace() } System.out.println(Thread.currentThread().getName()+Thread.currentThread ().getName()+" "+i) } } }
上传时间: 2017-07-15
上传用户:lijianyu172