• P6

      6頁·java的故事 文檔

    ?  Java的故事 1、Java的誕生: 讓我們把時空切換到1982年,那一年一個偉大的公司誕生于美國斯坦福大學校園,它的名字叫Sun Microsystems,直譯的話叫太陽微系統公司,我們平時就

    1903935385 2014-11-13   1498   0
    P10

      Java編碼規范 文檔

    ?Java編碼規范 Java編碼規范 1 1. 說明 3 1.1 為什么要有編碼規范 3 1.2 版權聲明 3 2. 文件名(File Names) 3 2.1 文件后綴(File Suffixes)

    caojiaqing 2013-11-24   1950   0
    P96

      java 線程教程 文檔

    ? Java 線程教程 Java線程:概念與原理 一、操作系統中線程和進程的概念 現在的操作系統是多任務操作系統。多線程是實現多任務的一種方式。 進程是指一個內存中運行的應用程序,每個進程都有自己獨立

    449077974 2016-09-07   2637   0
    P36

      java-poi教程 文檔

    ?JAVA軟件工程師教育系列教程 POI報表 --用POI與Excel交互 AURISOFT JAVA軟件工程師教育系列教程 第一章 POI簡介 --Jakata?Poi?HSSF:純java的Excel解決方案

    CHENGZIMA 2016-11-25   542   0
    P

    Java EE 6 API 文檔

    lium-16 2011-10-21   9155   0
    P

    Java 5.0 中文 API 文檔

    本文檔是 Java 2 Platform Standard Edition 5.0 的 API 規范。 java.applet 提供創建 applet 所必需的類和 applet 用來與其 applet 上下文通信的類。 java.awt 包含用于創建用戶界面和繪制圖形圖像的所有類。 java.awt.color 提供用于顏色空間的類。 java.awt.datatransfer 提供在應用程序之間和在應用程序內部傳輸數據的接口和類。

    mwt 2014-05-26   3163   0
    P

    CORBA Networking with Java 文檔

    System administrators around the country, and in fact around the world, are seeking to solve their management’s desire to have an intranet and also have their companies involved on the Internet (read “World Wide Web”) for commercial reasons. They find that their key problem is hardware and software integration. The expected general technical goals of this enterprise network are: <br> <br>? Interoperability <br>? Portability <br>? Reusability <br>A possible scheme for achieving these goals is the use of the Common Object Request Broker Architecture (CORBA) and Java internetworking.

    why311 2014-10-20   1494   0
    P

    JDBC Database Access with Java 文檔

    THIS is really two books in one: a tutorial and a reference manual for JDBC, the application programming interface that makes it possible for programmers to access databases from Java. The goal is to be useful to a wide range of readers, from database novices to database experts. Therefore, we have arranged the book so that information needed only by experts is separated out from the basic material. We hope that driver developers as well as application programmers and MIS administrators will find what they need.

    why311 2014-10-20   3825   0
    JDBC   Java開發   Java  
    P

    Java Concurrency in Practice 文檔

    Java Concurrency In Practice是講述java并發編程的經典著作"I was fortunate indeed to have worked with a fantastic team on the design and implementation of the concurrency features added to the Java platform in Java 5.0 and Java 6. Now this same team provides the best explanation yet of these new features, and of concurrency in general. Concurrency is no longer a subject for advanced users only. Every Java developer should read this book." --Martin Buchholz JDK Concurrency Czar, Sun Microsystems

    Grizzly 2013-03-25   3497   0

    Java 讀寫 Properties 文件 代碼段

    //讀操作 Properties properties = new Properties(); try { properties.load(new FileInputStream("filename.properties")); } catch (IOException e) { // implement catch logic } //寫操作 Properties properties = ne

    yb25 2015-01-29   1706   0
    Java  

    通用的Java DAO類 代碼段

    import java.io.Serializable; import java.util.Date; import java.util.List; import org.hibernate.Criteria;

    dd2d 2015-03-17   5756   1
    Java  

    Java數組操作 代碼段

    挺有用的額,其中有幾個方法自己都不熟悉

    autumnz613 2015-04-27   1291   0

    常用的Java代碼匯總 代碼段

    getMethodName(); 4. 轉字符串到日期 java.util.Date = java.text.DateFormat.getDateInstance().parse(date

    jopen 2015-06-18   4658   0
    Java  

    Java 圖片合并類 代碼段

    loyom.mp.handle; import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; import

    eg756 2015-08-05   1021   0
    Java  

    Java線程池例子 代碼段

    的優點就不多說了。 對于多線程的線程安全處理,這個也非常重要,有些同學還是要多補補課。 Java線程池說起來也簡單,簡單說下繼承關系: ThreadPoolExecutor extends

    jopen 2015-12-15   4606   0
    Java  

    Java中CountDownLatch用法 代碼段

    import java.util.concurrent.CountDownLatch; import java.util.concurrent.Executor; import java.util.concurrent

    MarRVP 2016-01-19   1047   0
    Java   多線程  

    Java實現Grep 代碼段

    Java實現Grep grep.java import java.io.*; public class grep{ public static void main(String [] args) throws

    ydongsky 2016-01-19   886   0
    Java  
    P14

      Java基礎問答 文檔

    ?Java基礎 1.如何獲得數組的長度? 數組名.length 2.訪問修飾符“public/private/protected/缺省的修飾符”的使用類? public :? 公共,均可訪問 private:?

    liu3340113 2011-10-08   2847   0
    P10

      JAVA 內存管理總結 文檔

    ?JAVA 內存管理總結 1. java是如何管理內存的 ?Java的內存管理就是對象的分配和釋放問題。(兩部分)? 分配 :內存的分配是由程序完成的,程序員需要通過關鍵字new 為每個對象申請內存空間

    kes168 2011-10-30   3908   0
    P5

      Flex+java入門 文檔

    ?Flex+java入門   學了幾天flex,想把flex與java進行交互,在網上找了一些資料,弄了一天多時間終于搞定了。Flex與java交互有三種方法,我較為習慣先建web程序再加入flex。我的開發環境室MyEclipse6

    lihai85 2012-02-22   5491   0
    1 2 3 4 5 6 7 8 9 10
  • sesese色