亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

蟲蟲首頁| 資源下載| 資源專輯| 精品軟件
登錄| 注冊

Java-<b>Only</b>

  • The Kannel Open Source WAP and SMS gateway works as both an SMS gateway, for implementing keyword b

    The Kannel Open Source WAP and SMS gateway works as both an SMS gateway, for implementing keyword based services via GSM text messages, and a WAP gateway, via UDP. The SMS part is fairly mature, the WAP part is early in its development. In this release, the GET request for WML pages and WMLScript files via HTTP works, including compilation for WML and WMLScript to binary forms. Only the data call bearer (UDP) is supported, not SMS.

    標簽: gateway implementing SMS keyword

    上傳時間: 2014-01-11

    上傳用戶:2525775

  • This class implements the same API as the Java 1.3 java.util.TimerTask. * Note that a TimerTask ca

    This class implements the same API as the Java 1.3 java.util.TimerTask. * Note that a TimerTask can only be scheduled on one Timer at a time, but * that this implementation does not enforce that constraint.

    標簽: TimerTask implements the class

    上傳時間: 2015-06-10

    上傳用戶:無聊來刷下

  • 需求描述: 南水北調工程東線江蘇江陰至山東濟寧之間

    需求描述: 南水北調工程東線江蘇江陰至山東濟寧之間,地勢北高南低,沿途需要建立一系列大型抽水泵站進行梯級抽水。通常每兩個泵站之間需要建設一座水庫作為中轉。低處泵站將水抽到中轉水庫,再由高處泵站向更高的中轉水庫抽水。設有泵站A,B和中轉水庫C,泵站設有一定數(shù)量的抽水機,水庫有一定容量,當水位高于允許最高水位,禁止低處泵站注水;當水位低于允許最低水位,禁止高處泵站抽水。 請用面向對象方法設計一個仿真程序,要求: 1, 兩座泵站在隨機時間,以隨機時間長度,隨機臺抽水機抽水或注水 2, 水庫根據(jù)自身容量允許或禁止泵站抽水,以保證自身處于安全水位。 3, 泵站即使在允許抽水/注水條件下,依然可以根據(jù)自身狀態(tài)(如高/低處水庫水位情況)選擇抽水/注水,由于只考慮兩個泵站一個水庫,此功能可由隨機數(shù)實現(xiàn)。 剛學java,寫的比較業(yè)余,請高手指點!

    標簽: 工程 江蘇

    上傳時間: 2014-01-16

    上傳用戶:541657925

  • The view238 application is a simple tool for graphically displaying STEP-NC toolpaths. It is a Java

    The view238 application is a simple tool for graphically displaying STEP-NC toolpaths. It is a Java application that reads AP-238 XML data using the DOM inferface, then finds and display the toolpaths within. At present, only polylines, and circular arcs are processed.

    標簽: application graphically displaying toolpaths

    上傳時間: 2013-12-02

    上傳用戶:zhangliming420

  • LemonSMS is a component developed in Java that provides a turnkey solution for application developer

    LemonSMS is a component developed in Java that provides a turnkey solution for application developers to incorporate into their Java applications the functionality of sending and processing of incoming SMS messages. LemonSMS acts as a middleware between a Java application and a GSM Modem or Data enabled phone. Because LemonSMS only provides an interface to the added SMS functionality, your application still handles access to data and business logic tier. With the easy-to-use LemonSMS API, developers can easily utilize SMS functionalities provided by LemonSMS.

    標簽: application component developed developer

    上傳時間: 2013-12-29

    上傳用戶:大融融rr

  • 網絡考試系統(tǒng)旨在實現(xiàn)考試的無紙化管理

    網絡考試系統(tǒng)旨在實現(xiàn)考試的無紙化管理,對一些科目的考試可以通過互聯(lián)網絡或局域網進行,方便校方考務的管理,也方便了考生,尤其適合考生分布廣,不易集中的遠程教育。本系統(tǒng)包括系統(tǒng)管理、考生管理、在線考試、在線制作試卷、控制學生考試、試卷審批中心等功能。本論文主要介紹了系統(tǒng)的分析,設計和開發(fā)的全部過程。運用數(shù)據(jù)流圖,ER圖,程序流程圖等對系統(tǒng)的設計過程進行詳細的說明。全文共分為前言、需求分析、系統(tǒng)設計、開發(fā)技術、關鍵技術解決,結論六部分。西統(tǒng)采用B/S開發(fā)模式,開發(fā)工具選擇JAVA、JSP、Javas cript、Html語言,采用Tomcat服務器技術,后臺數(shù)據(jù)庫選用SQL Server 2000。

    標簽: 網絡考試 無紙化管理

    上傳時間: 2013-12-20

    上傳用戶:iswlkje

  • A Java application to manage multiple closed answer questions (quiz). Every quiz has many yes/no ans

    A Java application to manage multiple closed answer questions (quiz). Every quiz has many yes/no answers, only one answer is correct. All classes should be contained by package "quiz".

    標簽: quiz application questions multiple

    上傳時間: 2014-08-16

    上傳用戶:sk5201314

  • 【實驗名稱】遞歸子程序分析器的設計與實現(xiàn) 【實驗目的和要求】 設計、編制

    【實驗名稱】遞歸子程序分析器的設計與實現(xiàn) 【實驗目的和要求】 設計、編制,調試一個典型的語法分析程序,實現(xiàn)對如下的遞歸子程序語法的分析,進一步掌握常用的語法分析方法。 【實驗內容】 ① 本分析程序所分析的文法如下: G[E]: E->eBaA A->a|bAcB B->dEd|aC C->e|dC ② 針對上述文法編寫一遞歸子程序分析程序,該程序的輸入是任意符號串,輸出是本次輸入的符號串是否是該文法的句子的結論。 【環(huán)境】 Windows Pc 機,任何版本的c語言 其中還包括java語言實現(xiàn)的程序

    標簽: 實驗 分析器 遞歸 程序

    上傳時間: 2013-12-25

    上傳用戶:lanhuaying

  • 對于計算機語言的發(fā)展吏

    對于計算機語言的發(fā)展吏,業(yè)界一般認為:B語言導致了C語言的誕生,C語言演變出了C++語言,而C++語言將讓位于Java語言。要想更好地了解Java語言,就必須了解它產生的原因、推動它發(fā)展的動力,以衣它對其它語言的繼承。像以前其他成功的計算機語言一樣,Java繼承了其他語言的先進原理,同時又因其獨特的環(huán)境要求而提出了一些創(chuàng)新性的概念。在這本書的其他各章中,將從實用的角度,對Java語言、庫及應用程序進行包括語法在內的詳細介紹。

    標簽: 計算機語言 發(fā)展

    上傳時間: 2016-04-02

    上傳用戶:fanboynet

  • JaNet: Java Neural Network Toolkit resume: A well documented toolkit for designing and training, a

    JaNet: Java Neural Network Toolkit resume: A well documented toolkit for designing and training, and a java library for inclusion in third party programs. description: jaNet package is a java neural network toolkit, which you can use to design, test, train and optimize an ideal Neural Network for your private application. You can then include your saved network in your program using the jaNet.backprop package. The consequent documentation is only in french for the moment, but an english translation is planned. The java source code is released under GPL, and can be compiled with JDK, Symantec Cafe or MS Visual J

    標簽: documented designing training Network

    上傳時間: 2016-04-15

    上傳用戶:zhanditian

主站蜘蛛池模板: 新乐市| 安达市| 沭阳县| 台州市| 中西区| 陆川县| 稻城县| 岳西县| 元阳县| 潼关县| 海淀区| 宁晋县| 马公市| 达尔| 津市市| 永城市| 繁峙县| 刚察县| 宜州市| 宁河县| 明水县| 苍梧县| 贵港市| 广元市| 会东县| 尉犁县| 南康市| 克东县| 嘉荫县| 新民市| 汉中市| 明溪县| 藁城市| 南阳市| 格尔木市| 华坪县| 肃北| 滕州市| 铜鼓县| 平江县| 九江县|