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

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

text-fading

  • 基于FRAME的一個寫字板的例子

    基于FRAME的一個寫字板的例子,其中涉及到JTable, MDI, text file, array等知識,適用于初學JAVA的朋友參考

    標簽: FRAME

    上傳時間: 2015-02-25

    上傳用戶:徐孺

  • 項目描述: Env_audit is a program that ferrets out everything it can about the environment. It looks for

    項目描述: Env_audit is a program that ferrets out everything it can about the environment. It looks for process IDs, UID, GID, signal masks, umask, priority, file descriptors, and environmental variables. It comes with test configurations for anacron, apache, atd, crond, GDB, inittab, logrotate, PHP, pppd, procmail, rsh, rxvt, sendmail, SSH, stunnel, sudo, xinetd, and xterm. env_audit是一個搜索有關環境的所有東西的程序。它查詢進程IDs,UID, GID,信號掩碼,umask,優先權,文件描述符,和環境變量。它提供了用于anacron, apache, atd, crond, GDB, inittab, logrotate, PHP, pppd, procmail, rsh, rxvt, sendmail, SSH, stunnel, sudo, xinetd, 和xterm的測試配置。 類別: Development Status: 5 - Production/Stable Environment: Console (Text Based) Intended Audience: System Administrators License: GNU General Public License (GPL) Operating System: POSIX Topic: Security

    標簽: environment everything Env_audit ferrets

    上傳時間: 2013-12-02

    上傳用戶:qweqweqwe

  • SPLASH is a c++ class library that implements many of the Perl constructs and data types, including

    SPLASH is a c++ class library that implements many of the Perl constructs and data types, including extensive regex regular expression pattern matching. For those not familiar with Perl, it is an excellent scripting language by Larry Wall and is available for most platforms. This Class library provides List, String, Regular Expression, and text manipulation handling capabilities based on those provided in Perl

    標簽: implements constructs including library

    上傳時間: 2013-12-07

    上傳用戶:1583060504

  • 短信程序

    短信程序,用于無線數據傳輸功能,是TEXT格式的

    標簽: 短信 程序

    上傳時間: 2014-01-26

    上傳用戶:924484786

  • The ability to create groups of reports, and grant users access to reports by group. The ability to

    The ability to create groups of reports, and grant users access to reports by group. The ability to generate reports as PDF, XLS, HTML, and CSV files. The ability to generate bar, pie and xy charts for inclusion in reports. The ability to schedule and email PDF, XLS, and CSV reports. The ability to define reusable report parameters. Available parameter types include Date, Text, and Query Parameters. The ability to create multiple DataSources for use in generating reports. Support for JNDI DataSources and internal connection pooling via Commons-DBCP is included. The ability to upload and hot deploy new reports. Web based administration of users, groups, reports, parameters, and datasources. Cross platform database support via Hibernate based persistence layer. Available in a preconfigured bundle with Apache Tomcat.

    標簽: ability reports The to

    上傳時間: 2014-01-14

    上傳用戶:franktu

  • In each step the LZSS algorithm sends either a character or a <position, length> pair. Among t

    In each step the LZSS algorithm sends either a character or a <position, length> pair. Among these, perhaps character "e" appears more frequently than "x", and a <position, length> pair of length 3 might be commoner than one of length 18, say. Thus, if we encode the more frequent in fewer bits and the less frequent in more bits, the total length of the encoded text will be diminished. This consideration suggests that we use Huffman or arithmetic coding, preferably of adaptive kind, along with LZSS.

    標簽: algorithm character position either

    上傳時間: 2014-01-27

    上傳用戶:wang0123456789

  • 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

  • java寫的局域網廣播系統.本軟件包括2個部分:局域網廣播系統——服務端

    java寫的局域網廣播系統.本軟件包括2個部分:局域網廣播系統——服務端,局域網廣播系統——接收端,服務端是通過網絡連接,與一些固定的計算機相連形成局域網進行彼此間的信息發送,實現通信功能。可以發送計算機中存儲的文本文件,只對以文本文擋(text)上文字進行識別;接收端是通過網絡連接,在指定的局域網中接收固定計算機播放的消息。

    標簽: java 局域網 廣播系統

    上傳時間: 2015-03-29

    上傳用戶:tuilp1a

  • 關于tts語音引擎的使用方法!很多軟件具有英文發音和朗讀功能

    關于tts語音引擎的使用方法!很多軟件具有英文發音和朗讀功能,它們都使用了MSTTS(Microsoft Text To Speech)技術。微軟遵照COM的標準,提供了一套Speech API來對MSTTS進行編程。要在程序中使用這套API,必須確保系統已經安裝了MSTTS和Spchapi軟件包。   Speech API可以作為類型庫引用到Delphi中,方法是:打開Project選單下的Import Type Litrary,點擊“Add”加入Windows\Speech目錄下的Vtxauto.tlb文件,在Delphi的Import目錄中就會生成VTxtAuto—TLB.pas文件,其中定義了VTxtAuto—TLB單元,把它加到Uses成員中來。設計如圖2所示的窗口,定義全局變量: var VoTxt:IVTxtAuto   然后在Form的OnCreate事件中加入:   VoTxt:=CoVTxtAuto_.Create   VoTxt.Register(′′,′Speech Test′) {注冊}   “Read”按鈕代碼為:   VoTxt.Speak(Memo1.Lines.Text,10) {朗讀}   “Stop”按鈕代碼為:   VoTxt.StopSpeaking {停止朗讀}   至此,應用程序已具有朗讀功能,10表示使用普通語氣。借住VoTxt的屬性和方法,我們還可以控制閱讀速度和語氣,實現暫停、跳句等功能,Speech API編程就這么簡單。

    標簽: tts 語音 引擎 多軟件

    上傳時間: 2014-01-21

    上傳用戶:13681659100

  • 這用java語言模擬一個銀行的操作系統

    這用java語言模擬一個銀行的操作系統,main-class:run 圖形界面模式:加參數-graphic 文字模式:加參數-text Client.txt存放客戶信息 Compte.txt存放賬戶信息 Operation.txt賬號使用信息 這個版本是法語版的

    標簽: java 語言 模擬 操作系統

    上傳時間: 2015-05-09

    上傳用戶:hzy5825468

主站蜘蛛池模板: 敦化市| 株洲县| 临沭县| 建湖县| 沙田区| 东平县| 车险| 阳泉市| 牟定县| 德格县| 深州市| 大英县| 平南县| 临清市| 上杭县| 哈巴河县| 安康市| 杭锦后旗| 阳高县| 屯昌县| 太仓市| 含山县| 中方县| 崇左市| 乌鲁木齐市| 锦屏县| 锡林郭勒盟| 吴旗县| 松滋市| 闽清县| 南皮县| 青神县| 井研县| 哈巴河县| 台南县| 衡南县| 蕲春县| 江孜县| 夏津县| 凤台县| 彭山县|