ote 相关的软件列表

首页

android开发基础教程—SharedPreferences读写

2020-02-16 标签:android,开发,基础,教程,读写,实现,代码,如下,public,class,extends,activity,override,protected,void,oncreate,bundle

实现代码如下: public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState)

首页

VBS 强制关闭Symantec Endpoint Protection的代码

2020-02-16 标签:vbs,强制,关闭,symantec,endpoint,protection,代码,使用,脚本,随时,让它,歇下,也可以,继续,工作,前提,必须,本机,管理员

使用这个脚本,可以随时让它歇下来。当然也可以让它继续工作。前提是,你必须是本机管理员。这个脚本使用一各很过时的终止程序方法:ntsd.exe -c q -p ProcessID。所以以前有过一个bat版,之所以用VBS是因为效率高一点,而且没有太多的黑色窗口。主要思想是:循环终止程序+停止服务代码如

jquery创建一个新的节点对象(自定义结构/内容)的好方法
首页

jquery创建一个新的节点对象(自定义结构/内容)的好方法

2020-02-16 标签:jquery,创建,新的,节点,对象,自定义,结构,内容,方法,html,实现,代码,如下,doctype,head,script,class,jsbin,src,http

HTML 实现代码如下: JsBin-在线js/css调试工具 article, aside, figure, footer, header, hgroup, menu, nav, section { display: block; } Hello OSTools Java

DataList中TextBox onfocus调用后台void静态方法及获取相应行数
首页

DataList中TextBox onfocus调用后台void静态方法及获取相应行数

2020-02-16 标签:datalist,textbox,onfocus,调用,后台,void,静态,方法,获取,相应,行数,昨天,某一,论坛,insus,net,尝试,做了,算是

昨天在某一论坛上看到的。Insus.NET尝试做了一下,算是练习了。Insus.NET的测试演示:xxx.aspx: 实现代码如下: 物料编码 xxx.aspx.cs:实现代码如下: protected void dlItemGeneral_ItemDataBound(o

首页

一个shell写的ping函数

2020-02-16 标签:shell,写的,ping,函数,实现,代码,如下,bin,bash,2013,01,06,14,00,wanggy,exp,n,ote,monitorset,u

实现代码如下:#!/bin/bash#2013-01-06 14:00:00 wanggy exp#note:ping monitorset -u#set -xping_fun(){d_network=192.168.1echo -n "input the network(default $d_ne

首页

一个可交互的并发ping检测脚本

2020-02-16 标签:交互,并发,ping,检测,脚本,实现,代码,如下,bin,bash,2013,01,11,17,00,wanggy,exp,n,ote,monitor

实现代码如下:#!/bin/bash#********************************##2013-01-11 17:00:00 wanggy exp##note:ping monitor##********************************#set -uping_fu

首页

并发数据库压力测试的shell脚本代码

2020-02-16 标签:并发,数据库,压力,测试,shell,脚本,代码,实现,如下,bin,bash,后台,运行,fun,wanggy,2012,01,25,n,ote

实现代码如下:#!/bin/bash#********************************##并发后台运行fun##for wanggy 2012-01-25##note:##fun_num fun函数后台运行次数##sql_num 每个函数sql运行次数##**************

首页

ASP.NET对IIS中的虚拟目录进行操作的代码

2020-02-16 标签:asp,net,iis,虚拟,目录,进行,操作,代码,实现,如下,假如,名为,webtest,先在,项目,引用,system,dll,using

实现代码如下: //假如虚拟目录名为"Webtest",先在项目中引用 //System.DirectoryServices.dll,再 using System.DirectoryServices; protected System.DirectoryServices.DirectoryEntry

首页

PHP daddslashes 使用方法介绍

2020-02-16 标签:php,daddslashes,使用方法,介绍,实例,代码,实现,如下,set,magic,quotes,runtime,mqg,gpc,post,字符,函数

实例代码: 实现代码如下: @set_magic_quotes_runtime(0); $MQG = get_magic_quotes_gpc(); if(!$MQG if(!$MQG //转译字符函数 function daddslashes($string) { if(!is_array($

c# 组合模式
首页

c# 组合模式

2020-02-16 标签:c,组合,模式,结构图,抽象,对象,实现,代码,如下,abstract,class,component,protected,string,n,ame,public,void,add,remove

结构图: 抽象对象:实现代码如下:abstract class Component{protected string name;public Component(string name){this.name = name;}public abstract void Add(Component c);