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