摘要:
C:\Users\Administrator\Desktop\hsqldb-2.3.2\data>netstat -h Displays protocol statistics and current TCP/IP network connections. NETSTAT [-a] [-b] [-e... 阅读全文
摘要:
1 配置的流的效果图2 应用配置文件hello.xml内容 1 2 3 10 11 12 13 14 15 16 17 18 19 20 21 22 ... 阅读全文
摘要:
1 读xml文件 1 public static String read(String path) { 2 3 String str = null; 4 5 try { 6 SAXReader rea... 阅读全文
摘要:
代码如下: 1 package com.wiscom.utils; 2 3 import java.io.BufferedReader; 4 import java.io.File; 5 import java.io.FileInputStream; 6 import java.io.... 阅读全文
摘要:
1 代码如下: 1 package dom.pasing; 2 3 import java.io.IOException; 4 import java.io.StringWriter; 5 6 import javax.xml.parsers.DocumentBuilder; 7 ... 阅读全文
摘要:
wsdl2java工具使用方法描述:C:\Users\Administrator>wsdl2java -hUsing AXIS2_HOME: E:\Apache_Projects\axis2\axis2-1.6.2-binUsing JAVA_HOME: D:\Java\jdk1.6.0_... 阅读全文
摘要:
1 头文件Stack.h 1 #ifndef STACK_H 2 #define STACK_H 3 4 struct Stack 5 { 6 7 struct Link 8 { 9 void* data;10 Link* next;11 ... 阅读全文
摘要:
1 实现思路向栈中插入4个元素后的状态执行过程分析:2 代码实现clib.h 接口定义 1 typedef struct CStashTag 2 { 3 int ele_size; //栈中每个元素的占用的字节数 4 int capacity;... 阅读全文
摘要:
1 每个对象中的常量 --- const数据成员const限定,意味着“在该对象生命周期内,它是一个常量”。 关键字const使被限定的量为常量在该类的每个对象中,编译器都为其const数据成员分配存储空间。在该类的每个对象中,const数据成员可以取不同的值(可以初始化成不同的值),但是const... 阅读全文
摘要:
1 public final class ThreeStooges { 2 3 4 /* 5 * stooges是Set类型的引用,final限定该引用成员属性stooges被赋初值后,就不能再改变去引用其他的同类对象 6 * final只是限定了声... 阅读全文