虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

Public-Resource

  • java的一个源代码

    java的一个源代码,、 public class ThunderBoltAct extends Canvas implements Runnable { private int TIMEOUT = 0 private final static int NUMERIC = 10000 //总分 private final static int INERRGAL = 60 //频率 private final static int MAXBATTLE = 3 //最大飞机数 private final static int MAXBALLNUM = 30 //最多飞机子弹数 private final static int MAXCOPTERNUM = 16 //最大敌机数 private final static int MAXCOPTERBALLNUM = 16 //最多敌机子弹数 private final static int STEP = 1 private final static int MINCOPTER = 2 //最小敌机数

    标签: java 源代码

    上传时间: 2016-04-26

    上传用户:jichenxi0730

  • 可连接SQL

    可连接SQL,ORACLE等数据库。 首先建立SHOP用户,密码为SHOP,赋予连接和RESOURCE权限。再建立SHOP表空间,再建立表和触发器(在SQL源代码.doc里)并在PASSWORD表里添加新项name:‘admin ,psw: admin 这是管理员登陆帐户。 剩余的就看帮助文件吧。

    标签: SQL 连接

    上传时间: 2013-12-28

    上传用户:lhw888

  • This package provides a complete http client library. It currently implements most of the relevant p

    This package provides a complete http client library. It currently implements most of the relevant parts of the HTTP/1.0 and HTTP/1.1 protocols, including the request methods HEAD, GET, POST and PUT, and automatic handling of authorization, redirection requests, and cookies. Furthermore the included Codecs class contains coders and decoders for the base64, quoted-printable, URL-encoding, chunked and the multipart/form-data encodings. The whole thing is free, and licenced under the GNU Lesser General Public License (LGPL) (note that this is not the same as the GPL).

    标签: implements currently complete provides

    上传时间: 2014-01-16

    上传用户:siguazgb

  • 本程序是用JNI技术实现的读取硬盘序列号

    本程序是用JNI技术实现的读取硬盘序列号, 将ChenminDiskIDJoc.jar 加入环境变量 这两个文件放入window 文件夹 或者JDK的bin文件夹 或者你的应用文件夹 DiskID32.dll DiskID.dll public static String chenmin.io.DiskID.Factory() 返回硬盘厂家 public static String chenmin.io.DiskID.DiskID() 返回硬盘序列号 ChenminDiskIDTest.bat 将启动直接演示一个读取硬盘序列号的测试 测试读取硬盘序列号的源代码在ChenminDiskIDTest.jar中

    标签: JNI 程序 技术实现 序列号

    上传时间: 2013-11-28

    上传用户:561596

  • The PXI Hardware Specification is authored and copyrighted by the PXI Systems Alliance. ... This is

    The PXI Hardware Specification is authored and copyrighted by the PXI Systems Alliance. ... This is the first public revision of the PXI specification.

    标签: Specification copyrighted PXI Hardware

    上传时间: 2013-12-19

    上传用户:cazjing

  • SimpliciTI™ -1.0.3.exe for CC11xx and CC25xx SimpliciTI is a simple low-power RF network proto

    SimpliciTI™ -1.0.3.exe for CC11xx and CC25xx SimpliciTI is a simple low-power RF network protocol aimed at small (<256) RF networks. Such networks typically contain battery operated devices which require long battery life, low data rate and low duty cycle and have a limited number of nodes talking directly to each other or through an access point or range extenders. Access point and range extenders are not required but provide extra functionality such as store and forward messages. With SimpliciTI the MCU resource requirements are minimal which results in the low system cost.

    标签: SimpliciTI low-power network simple

    上传时间: 2014-11-05

    上传用户:rishian

  • SimpliciTI™ -1.0.4.exe for CC2430 SimpliciTI is a simple low-power RF network protocol aimed

    SimpliciTI™ -1.0.4.exe for CC2430 SimpliciTI is a simple low-power RF network protocol aimed at small (<256) RF networks. Such networks typically contain battery operated devices which require long battery life, low data rate and low duty cycle and have a limited number of nodes talking directly to each other or through an access point or range extenders. Access point and range extenders are not required but provide extra functionality such as store and forward messages. With SimpliciTI the MCU resource requirements are minimal which results in the low system cost.

    标签: SimpliciTI low-power protocol network

    上传时间: 2016-05-21

    上传用户:R50974

  • C++名家精华.chm 我们用早期的C++语言编程。工作的第二天中午

    C++名家精华.chm 我们用早期的C++语言编程。工作的第二天中午,厌烦了读职工手册,于是我写了一个工具类,里面包含一个原始指针作为成员变量: #include "xStruct.h" // definition of struct X class xWrapper { X* xItem public: xWrapper() : xItem(new X) { } ~xWrapper() { delete xItem } void dump() { /* dumps xItem to cout */ } } 当然了,使用这个类的程序由于内存问题总是时不时的崩溃,因为我违反三个重要设计原则之一:任何时候,只要你提供了析构函数、拷贝构造函数或赋值运算符中的一个,你通常需要三个都提供。([1]) “所以,”我自言自语道,“我必须自己处理拷贝和赋值问题。简单地...auto_ptr有拷贝构造函数和赋值运算符,我可以拿过来用一下。”(你知道早期C++程序库中的auto_ptr,是吗?)

    标签: chm 语言编程

    上传时间: 2013-12-28

    上传用户:Amygdala

  • WINDOWS调试工具很强大

    WINDOWS调试工具很强大,但是学习使用它们并不容易。特别对于驱动开发者使用的WinDbg和KD这两个内核调试器(CDB和NTSD是用户态调试器)。本教程的目标是给予一个已经有其他调试工具使用经验的开发者足够信息,使其能通过参考WINDOWS调试工具的帮助文件进行内核调试。本文将假定开发者熟悉一般WINDOWS操作系统和进程的建立过程。 本文的重点是集成内核模式和用户态模式的图形化调试器WinDbg。KD在脚本和自动化调试中更有用,并且在资深程序员中拥有一定地位,但是本教程将集中讨论WinDbg,只会偶尔提到KD。 本文讨论的是Windows NT 4.0,Windows 2000或以后的版本,而且目标电脑的处理器基于X86架构。对于64位平台,将不会特别提及。 总之,本教程由简单介绍调试器的安装开始,大体分成2部分,基础知识和选择技术。基础知识包括基本调试命令和常用调试命令。选择技术是其他命令和在很多情况下都有用的调查方法。后者并不是调查象deadlocks, memory corruption或者resource leaks的唯一方法。第一次阅读本教程,你可能会跳过选择技术。你可以停止阅读本教程而转向微软调试器讨论组,也可以通过调试器的反馈e-mai解决更多的问题。

    标签: WINDOWS 调试工具

    上传时间: 2016-06-05

    上传用户:1159797854

  • 本程序执行后

    本程序执行后,创建一个能够加载文字的面板,文字的内容是本地主机的IP地址的动态显示。跑马灯文字的大小和跑马灯文字显示的速度都可以在GatutTextCrawler.html文件里通过参数进行设置。 编程思路:首先,本练习因为要制作侦测IP的跑马灯的实例,所以首先要生成程序界面:在函数public void init()中,首先通过语句s = getParameter("fontSize")和fontSize = s != null ? Integer.valueOf(s).intValue() : 12设置文字字体大小,然后进行字体设置和显示速度设置,最后通过语句msgText = getParameter("preText")得到GatutTextCrawler.html文件中的字符串值。然后,得到主机IP地址,首先通过函数adds = InetAddress.getLocalHost().toString()得到主机的IP地址,最后在更新屏幕函数public void update(Graphics g)中通过实现跑马灯效果。

    标签: 程序

    上传时间: 2016-06-06

    上传用户:miaochun888