echo表示显示此命令后的字符echooff表示在此语句后所有运行的命令都不显示命令行本身@与echooff相象,但它是加在每个命令行的最前面,表示运行时不显示这一行的命令行(只能影响当前行)。call调用另一个批处理文件(如果不用call而直接调用别的批处理文件,那么执行完那个批处理文件后将无法返...
分类:
其他好文 时间:
2014-04-30 05:13:07
阅读次数:
522
public void CreateLine(Grid oGrid, string sTitle,
string sTableName, bool ifGetSig, string sYUint, string sYUint2, string
sYTitle1, string sYTitle2, ....
分类:
Web程序 时间:
2014-04-30 04:49:24
阅读次数:
518
1 /*2 Animal.java3 */4 package animal;5 6 public
abstract class Animal {7 public abstract void cry();8 public abstract String
getanimalName(...
分类:
编程语言 时间:
2014-04-30 04:27:50
阅读次数:
403
public partial class json序列化 : System.Web.UI.Page {
protected void Page_Load(object sender, EventArgs e) { StringBuilder builder =
new StringBuilder(....
分类:
数据库 时间:
2014-04-30 03:27:17
阅读次数:
585
public void sendPlayStateBrocast() {if (mContext !=
null){Intent intent = new
Intent(BROCAST_NAME);intent.putExtra(MusicPlayState.PLAY_STATE_NAME, mPl...
分类:
其他好文 时间:
2014-04-30 02:49:15
阅读次数:
414
生成私钥输入“genrsa -out rsa_private_key.pem
1024”命令,回车后,在当前 bin 文件目 录中会新增一个 rsa_private_key.pem 文件,其文件为原始的商户私钥(请妥善保 存该文件,PHP
开发语言中需要使用该文件),生成公钥输入“rsa -in r...
分类:
移动开发 时间:
2014-04-30 01:33:26
阅读次数:
643
1.如果你看到一个数组的行为方式很像一个数据结构,就可以把数组变成对象private int
aa,变成: int aa; public int GetAA() {return aa;}//好处:使得获取的数据更加有效
分类:
其他好文 时间:
2014-04-30 00:55:25
阅读次数:
373
public class Factory2 { /** * @param args 工厂模式
*/ public static void main(String[] args) { // TODO Auto-generated method stub
Ifactory ifactory =...
分类:
其他好文 时间:
2014-04-30 00:33:52
阅读次数:
504
package com.szy.service;import
android.app.Service;import android.content.Intent;import
android.os.IBinder;import android.util.Log;public class Exampl...
分类:
其他好文 时间:
2014-04-30 00:10:08
阅读次数:
510
泛型:一直对这个概念都觉着迷糊,经过最近的阅读,自己有了一定的理解,现分享给大家。从字面的意思理解来看,泛型,泛就是模糊、暂不确定暂定的意思。本人这样理解为,使用泛型就是,定义的一个类型,类型暂不确定,给使用给一个占位符给代替,在使用的时候可以给确定其定义的类型。下面附上eg:
public sta...
分类:
其他好文 时间:
2014-04-28 10:46:48
阅读次数:
861