mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-11-29 10:27:39 +08:00
Revert "All source code have been changed to use utf8 charset with BOM header!"
This reverts commit 15d999759e
.
This commit is contained in:
parent
15d999759e
commit
9697f95b8f
@ -1,4 +1,4 @@
|
||||
cmake_minimum_required(VERSION 2.8.0)
|
||||
cmake_minimum_required(VERSION 2.8.0)
|
||||
project(acl)
|
||||
#message(${CMAKE_SYSTEM_NAME})
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
|
@ -1,117 +1,117 @@
|
||||
#ifndef __LIB_GID_INCLUDE_H__
|
||||
#ifndef __LIB_GID_INCLUDE_H__
|
||||
#define __LIB_GID_INCLUDE_H__
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/* 通讯协议方式 */
|
||||
#define GID_PROTO_CMDLINE 0 /* 命令行方式 */
|
||||
#define GID_PROTO_JSON 1 /* http 方式,数据格式为 json 格式 */
|
||||
#define GID_PROTO_XML 2 /* http 方式,数据格式为 xml 格式 */
|
||||
/* 通讯协议方式 */
|
||||
#define GID_PROTO_CMDLINE 0 /* 命令行方式 */
|
||||
#define GID_PROTO_JSON 1 /* http 方式,数据格式为 json 格式 */
|
||||
#define GID_PROTO_XML 2 /* http 方式,数据格式为 xml 格式 */
|
||||
|
||||
/* 操作命令 */
|
||||
#define GID_CMD_NEXT "new_gid" /* 获取下一个唯一 gid */
|
||||
/* 操作命令 */
|
||||
#define GID_CMD_NEXT "new_gid" /* 获取下一个唯一 gid */
|
||||
|
||||
/* 出错码 */
|
||||
/* 出错码 */
|
||||
|
||||
/* 客户端相关的错误码 */
|
||||
#define GID_OK 200 /* 正常 */
|
||||
#define GID_ERR_INIT 400 /* 库未初始化,应用应在程序初始化时调用初始化函数 gid_client_init */
|
||||
#define GID_ERR_CONN 401 /* 连接服务器失败 */
|
||||
#define GID_ERR_IO 402 /* 与服务器通信失败 */
|
||||
#define GID_ERR_PROTO 403 /* 协议格式错误 */
|
||||
#define GID_ERR_SERVER 404 /* 服务器内部出错 */
|
||||
/* 客户端相关的错误码 */
|
||||
#define GID_OK 200 /* 正常 */
|
||||
#define GID_ERR_INIT 400 /* 库未初始化,应用应在程序初始化时调用初始化函数 gid_client_init */
|
||||
#define GID_ERR_CONN 401 /* 连接服务器失败 */
|
||||
#define GID_ERR_IO 402 /* 与服务器通信失败 */
|
||||
#define GID_ERR_PROTO 403 /* 协议格式错误 */
|
||||
#define GID_ERR_SERVER 404 /* 服务器内部出错 */
|
||||
|
||||
/* 服务端相关的错误码 */
|
||||
#define GID_ERR_SID 500 /* 会话 ID 号不对 */
|
||||
#define GID_ERR_OVERRIDE 501 /* 达到最大分配值 */
|
||||
#define GID_ERR_SAVE 502 /* 存储至磁盘时出错 */
|
||||
/* 服务端相关的错误码 */
|
||||
#define GID_ERR_SID 500 /* 会话 ID 号不对 */
|
||||
#define GID_ERR_OVERRIDE 501 /* 达到最大分配值 */
|
||||
#define GID_ERR_SAVE 502 /* 存储至磁盘时出错 */
|
||||
|
||||
/**
|
||||
* 库初始化函数,使用者在程序启动后应该调用该函数初始化库
|
||||
* @param proto {int} 通信协议格式,参见上面:GID_PROTO_XXX
|
||||
* @param server_addr {const char*} gid 服务器地址,格式:ip:port 或
|
||||
* domain:port 或 unix 域 /xxx/xxx/xxx
|
||||
* 库初始化函数,使用者在程序启动后应该调用该函数初始化库
|
||||
* @param proto {int} 通信协议格式,参见上面:GID_PROTO_XXX
|
||||
* @param server_addr {const char*} gid 服务器地址,格式:ip:port 或
|
||||
* domain:port 或 unix 域 /xxx/xxx/xxx
|
||||
*/
|
||||
void gid_client_init(int proto, const char *server_addr);
|
||||
|
||||
/**
|
||||
* 根据错误号获得错误描述
|
||||
* @param errnum {int} 错误号,参见上面:GID_ERR_XXX
|
||||
* @return {const char*} 错误描述信息
|
||||
* 根据错误号获得错误描述
|
||||
* @param errnum {int} 错误号,参见上面:GID_ERR_XXX
|
||||
* @return {const char*} 错误描述信息
|
||||
*/
|
||||
const char *gid_client_serror(int errnum);
|
||||
|
||||
/**
|
||||
* 设置 HTTP 请求中的 URL,内部有缺省值,可不直接调用此函数
|
||||
* @param url {const char*} URL 字符串
|
||||
* 设置 HTTP 请求中的 URL,内部有缺省值,可不直接调用此函数
|
||||
* @param url {const char*} URL 字符串
|
||||
*/
|
||||
void gid_client_set_url(const char *url);
|
||||
|
||||
/**
|
||||
* 设置 HTTP 请求是否保持长连接,缺省情况下保持长连接
|
||||
* @param keepalive {int} 是否保持长连接
|
||||
* 设置 HTTP 请求是否保持长连接,缺省情况下保持长连接
|
||||
* @param keepalive {int} 是否保持长连接
|
||||
*/
|
||||
void gid_client_set_keepalive(int keepalive);
|
||||
|
||||
/**
|
||||
* 在长连接情况下,如果连接中间意外中断,设置重试次数,缺省值为 1
|
||||
* @param nretry {int} 最大重试次数
|
||||
* 在长连接情况下,如果连接中间意外中断,设置重试次数,缺省值为 1
|
||||
* @param nretry {int} 最大重试次数
|
||||
*/
|
||||
void gid_client_set_retry_limit(int nretry);
|
||||
|
||||
/**
|
||||
* 设置连接 gid 服务器的连接超时时间(秒),缺省值为 20 秒
|
||||
* @param timeout {int} 超时时间(秒)
|
||||
* 设置连接 gid 服务器的连接超时时间(秒),缺省值为 20 秒
|
||||
* @param timeout {int} 超时时间(秒)
|
||||
*/
|
||||
void gid_client_set_conn_timeout(int timeout);
|
||||
|
||||
/**
|
||||
* 设置网络通信的读写超时时间(秒),缺省值为 20 秒
|
||||
* @param timeout {int} 超时时间(秒)
|
||||
* 设置网络通信的读写超时时间(秒),缺省值为 20 秒
|
||||
* @param timeout {int} 超时时间(秒)
|
||||
*/
|
||||
void gid_client_set_rw_timeout(int timeout);
|
||||
|
||||
/**
|
||||
* 获得下一个 gid 号
|
||||
* @param tag {const char*} 标识名称,如果为空,则内部缺省使用 default 标签,
|
||||
* 该值的格式为:tag_name[:sid],其中的 tag_name 为真正的标识名,sid 为访问
|
||||
* 该标识对象的授权ID号,如果该值与服务端的 sid 不匹配,则禁止访问并返回错误,
|
||||
* 当访问一个新的标识对象并产生第一个 gid 值时,其中如果设置了 sid 则该 sid
|
||||
* 自动做为该标识对象的授权ID号,其它程序若想访问该标识对象的 gid 则必须提供
|
||||
* 该授权 ID 号
|
||||
* @param errnum {int*} 该指针非空时用来记录出错时的错误号
|
||||
* @return {long long int} 获得的下一个唯一 gid 号,如果该值 < 0 则表示出错
|
||||
* 获得下一个 gid 号
|
||||
* @param tag {const char*} 标识名称,如果为空,则内部缺省使用 default 标签,
|
||||
* 该值的格式为:tag_name[:sid],其中的 tag_name 为真正的标识名,sid 为访问
|
||||
* 该标识对象的授权ID号,如果该值与服务端的 sid 不匹配,则禁止访问并返回错误,
|
||||
* 当访问一个新的标识对象并产生第一个 gid 值时,其中如果设置了 sid 则该 sid
|
||||
* 自动做为该标识对象的授权ID号,其它程序若想访问该标识对象的 gid 则必须提供
|
||||
* 该授权 ID 号
|
||||
* @param errnum {int*} 该指针非空时用来记录出错时的错误号
|
||||
* @return {long long int} 获得的下一个唯一 gid 号,如果该值 < 0 则表示出错
|
||||
*/
|
||||
long long int gid_next(const char *tag, int *errnum);
|
||||
|
||||
/* 如果获取 gid 的函数使用用户提供的连接描述符 */
|
||||
/* 如果获取 gid 的函数使用用户提供的连接描述符 */
|
||||
|
||||
/**
|
||||
* 采用命令行方式从服务端获取 gid 号
|
||||
* @param fd {int} 与服务器连接的套接字
|
||||
* @param tag {const char*} 标识名称,若为空则内部缺省使用default
|
||||
* @param errnum {int*} 该指针非空时用来记录出错时的错误号
|
||||
* @return {long long int} 获得的下一个唯一 gid 号, * 如果该值为 < 0 则表示出错
|
||||
* 采用命令行方式从服务端获取 gid 号
|
||||
* @param fd {int} 与服务器连接的套接字
|
||||
* @param tag {const char*} 标识名称,若为空则内部缺省使用default
|
||||
* @param errnum {int*} 该指针非空时用来记录出错时的错误号
|
||||
* @return {long long int} 获得的下一个唯一 gid 号, * 如果该值为 < 0 则表示出错
|
||||
*/
|
||||
long long int gid_cmdline_get(int fd, const char *tag, int *errnum);
|
||||
|
||||
/**
|
||||
* 采用 http 协议且数据格式为 json 格式,从服务端获取 gid 号
|
||||
* @param fd {int} 与服务器连接的套接字
|
||||
* @param tag {const char*} 标识名称,若为空则内部缺省使用default
|
||||
* @param errnum {int*} 该指针非空时用来记录出错时的错误号
|
||||
* @return {long long int} 获得的下一个唯一 gid 号,如果该值 < 0 则表示出错
|
||||
* 采用 http 协议且数据格式为 json 格式,从服务端获取 gid 号
|
||||
* @param fd {int} 与服务器连接的套接字
|
||||
* @param tag {const char*} 标识名称,若为空则内部缺省使用default
|
||||
* @param errnum {int*} 该指针非空时用来记录出错时的错误号
|
||||
* @return {long long int} 获得的下一个唯一 gid 号,如果该值 < 0 则表示出错
|
||||
*/
|
||||
long long int gid_json_get(int fd, const char *tag, int *errnum);
|
||||
|
||||
/**
|
||||
* 采用 http 协议且数据格式为 xml 格式,从服务端获取 gid 号
|
||||
* @param fd {int} 与服务器连接的套接字
|
||||
* @param tag {const char*} 标识名称,若为空则内部缺省使用default
|
||||
* @param errnum {int*} 该指针非空时用来记录出错时的错误号
|
||||
* @return {long long int} 获得的下一个唯一 gid 号,如果该值 < 0 则表示出错
|
||||
* 采用 http 协议且数据格式为 xml 格式,从服务端获取 gid 号
|
||||
* @param fd {int} 与服务器连接的套接字
|
||||
* @param tag {const char*} 标识名称,若为空则内部缺省使用default
|
||||
* @param errnum {int*} 该指针非空时用来记录出错时的错误号
|
||||
* @return {long long int} 获得的下一个唯一 gid 号,如果该值 < 0 则表示出错
|
||||
*/
|
||||
long long int gid_xml_get(int fd, const char *tag, int *errnum);
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#ifndef __GID_INCLUDE_H__
|
||||
#ifndef __GID_INCLUDE_H__
|
||||
#define __GID_INCLUDE_H__
|
||||
|
||||
#include "lib_acl.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "lib_acl.h"
|
||||
#include "lib_acl.h"
|
||||
|
||||
#include "global.h"
|
||||
#include "lib_gid.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "lib_acl.h"
|
||||
#include "lib_acl.h"
|
||||
|
||||
#include "global.h"
|
||||
#include "http_client.h"
|
||||
@ -29,7 +29,7 @@ acl_int64 gid_json_next(ACL_VSTREAM *client, const char *tag, int *errnum)
|
||||
else
|
||||
snprintf(buf, sizeof(buf), "{ cmd: '%s' }\r\n", GID_CMD_NEXT);
|
||||
|
||||
/* 发送 HTTP JSON 请求 */
|
||||
/* 发送 HTTP JSON 请求 */
|
||||
if (http_client_post_request(client, var_gid_url, 1,
|
||||
"json", buf, (int) strlen(buf), errnum) < 0)
|
||||
{
|
||||
@ -38,9 +38,9 @@ acl_int64 gid_json_next(ACL_VSTREAM *client, const char *tag, int *errnum)
|
||||
return (-1);
|
||||
}
|
||||
|
||||
json = acl_json_alloc(); /* 分配 JSON 对象 */
|
||||
json = acl_json_alloc(); /* 分配 JSON 对象 */
|
||||
|
||||
/* 接收 HTTP JSON 响应 */
|
||||
/* 接收 HTTP JSON 响应 */
|
||||
if (http_client_get_respond(client, json, NULL, errnum, NULL) < 0)
|
||||
{
|
||||
if (errnum)
|
||||
@ -51,7 +51,7 @@ acl_int64 gid_json_next(ACL_VSTREAM *client, const char *tag, int *errnum)
|
||||
|
||||
#define STR acl_vstring_str
|
||||
|
||||
/* 数据格式: { status: 'ok|error', gid: xxx, tag: 'xxx', msg: 'xxx', err: 'xxx' } */
|
||||
/* 数据格式: { status: 'ok|error', gid: xxx, tag: 'xxx', msg: 'xxx', err: 'xxx' } */
|
||||
|
||||
acl_foreach(iter, json) {
|
||||
ACL_JSON_NODE *node = (ACL_JSON_NODE*) iter.data;
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "lib_acl.h"
|
||||
#include "lib_acl.h"
|
||||
|
||||
#include "global.h"
|
||||
#include "http_client.h"
|
||||
@ -30,7 +30,7 @@ acl_int64 gid_xml_next(ACL_VSTREAM *client, const char *tag, int *errnum)
|
||||
else
|
||||
snprintf(buf, sizeof(buf), "<request cmd='%s' />\r\n", GID_CMD_NEXT);
|
||||
|
||||
/* 发送 HTTP JSON 请求 */
|
||||
/* 发送 HTTP JSON 请求 */
|
||||
if (http_client_post_request(client, var_gid_url, 1,
|
||||
"xml", buf, (int) strlen(buf), errnum) < 0)
|
||||
{
|
||||
@ -39,14 +39,14 @@ acl_int64 gid_xml_next(ACL_VSTREAM *client, const char *tag, int *errnum)
|
||||
return (-1);
|
||||
}
|
||||
|
||||
xml = acl_xml_alloc(); /* 分配 JSON 对象 */
|
||||
xml = acl_xml_alloc(); /* 分配 JSON 对象 */
|
||||
|
||||
if (tt == NULL)
|
||||
tt = acl_vstring_alloc(100);
|
||||
else
|
||||
ACL_VSTRING_RESET(tt);
|
||||
|
||||
/* 接收 HTTP JSON 响应 */
|
||||
/* 接收 HTTP JSON 响应 */
|
||||
if (http_client_get_respond(client, NULL, xml, errnum, tt) < 0)
|
||||
{
|
||||
if (errnum)
|
||||
@ -66,18 +66,18 @@ acl_int64 gid_xml_next(ACL_VSTREAM *client, const char *tag, int *errnum)
|
||||
}
|
||||
*/
|
||||
|
||||
/* 数据格式: <respond status='ok|error' gid=xxx tag='xxx' msg='xxx' err='xxx' /> */
|
||||
/* 数据格式: <respond status='ok|error' gid=xxx tag='xxx' msg='xxx' err='xxx' /> */
|
||||
|
||||
acl_foreach(iter, xml) {
|
||||
ACL_XML_NODE *node = (ACL_XML_NODE*) iter.data;
|
||||
|
||||
/* 找到 respond 结点 */
|
||||
/* 找到 respond 结点 */
|
||||
if (strcasecmp(STR(node->ltag), "respond") == 0
|
||||
&& node->attr_list != NULL)
|
||||
{
|
||||
ACL_ITER attr_iter;
|
||||
|
||||
/* 遍历结点属性 */
|
||||
/* 遍历结点属性 */
|
||||
acl_foreach(attr_iter, node->attr_list) {
|
||||
ACL_XML_ATTR *attr = (ACL_XML_ATTR*) attr_iter.data;
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "lib_acl.h"
|
||||
#include "lib_acl.h"
|
||||
|
||||
#include "global.h"
|
||||
#include "lib_gid.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#ifndef __GLOBAL_INCLUDE_H__
|
||||
#ifndef __GLOBAL_INCLUDE_H__
|
||||
#define __GLOBAL_INCLUDE_H__
|
||||
|
||||
extern char var_gid_server_addr[];
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "lib_acl.h"
|
||||
#include "lib_acl.h"
|
||||
#include "lib_protocol.h"
|
||||
|
||||
#include "lib_gid.h"
|
||||
@ -10,28 +10,28 @@ int http_client_post_request(ACL_VSTREAM *client, const char *url, int keepalive
|
||||
{
|
||||
HTTP_HDR_REQ* hdr_req = http_hdr_req_create(url, "POST", "HTTP/1.1");
|
||||
ACL_VSTRING* buf = acl_vstring_alloc(256);
|
||||
struct iovec vector[2]; /* 数据数组 */
|
||||
struct iovec vector[2]; /* 数据数组 */
|
||||
int ret;
|
||||
|
||||
/* 在请求头中设置请求体的数据长度 */
|
||||
/* 在请求头中设置请求体的数据长度 */
|
||||
http_hdr_put_int(&hdr_req->hdr, "Content-Length", len);
|
||||
if (keepalive)
|
||||
http_hdr_put_str(&hdr_req->hdr, "Connection", "keep-alive");
|
||||
if (gid_fmt && *gid_fmt)
|
||||
http_hdr_put_str(&hdr_req->hdr, "x-gid-format", gid_fmt);
|
||||
http_hdr_build_request(hdr_req, buf); /* 构建 HTTP 请求头数据 */
|
||||
http_hdr_build_request(hdr_req, buf); /* 构建 HTTP 请求头数据 */
|
||||
|
||||
/* 设置 HTTP 头 */
|
||||
/* 设置 HTTP 头 */
|
||||
vector[0].iov_base = acl_vstring_str(buf);
|
||||
vector[0].iov_len = ACL_VSTRING_LEN(buf);
|
||||
|
||||
/* 设置 HTTP 体 */
|
||||
/* 设置 HTTP 体 */
|
||||
vector[1].iov_base = (char*) body;
|
||||
vector[1].iov_len = len;
|
||||
|
||||
ret = acl_vstream_writevn(client, vector, 2); /* 发送请求头及请求体 */
|
||||
http_hdr_req_free(hdr_req); /* 释放 HTTP 请求头对象 */
|
||||
acl_vstring_free(buf); /* 释放缓冲区 */
|
||||
ret = acl_vstream_writevn(client, vector, 2); /* 发送请求头及请求体 */
|
||||
http_hdr_req_free(hdr_req); /* 释放 HTTP 请求头对象 */
|
||||
acl_vstring_free(buf); /* 释放缓冲区 */
|
||||
|
||||
if (ret == ACL_VSTREAM_EOF) {
|
||||
if (errnum)
|
||||
@ -39,7 +39,7 @@ int http_client_post_request(ACL_VSTREAM *client, const char *url, int keepalive
|
||||
return -1;
|
||||
}
|
||||
|
||||
/* 发送HTTP请求成功 */
|
||||
/* 发送HTTP请求成功 */
|
||||
return (0);
|
||||
}
|
||||
|
||||
@ -53,15 +53,15 @@ int http_client_get_respond(ACL_VSTREAM* client, ACL_JSON *json,
|
||||
|
||||
acl_assert(json != NULL || xml != NULL);
|
||||
|
||||
hdr_res = http_hdr_res_new(); /* 创建HTTP 响应头对象 */
|
||||
/* 读取 HTTP 服务器响应头 */
|
||||
hdr_res = http_hdr_res_new(); /* 创建HTTP 响应头对象 */
|
||||
/* 读取 HTTP 服务器响应头 */
|
||||
ret = http_hdr_res_get_sync(hdr_res, client, var_gid_rw_timeout);
|
||||
if (ret < 0) {
|
||||
http_hdr_res_free(hdr_res); /* 释放 HTTP 响应头对象 */
|
||||
http_hdr_res_free(hdr_res); /* 释放 HTTP 响应头对象 */
|
||||
return -1;
|
||||
}
|
||||
/* 解析 HTTP 响应头 */
|
||||
if (http_hdr_res_parse(hdr_res) < 0) { /* 解析出错 */
|
||||
/* 解析 HTTP 响应头 */
|
||||
if (http_hdr_res_parse(hdr_res) < 0) { /* 解析出错 */
|
||||
http_hdr_res_free(hdr_res);
|
||||
return -1;
|
||||
}
|
||||
@ -70,7 +70,7 @@ int http_client_get_respond(ACL_VSTREAM* client, ACL_JSON *json,
|
||||
http_hdr_print(&hdr_res->hdr, "---respond---");
|
||||
*/
|
||||
|
||||
/* 需要先根据 HTTP 响应头判断是否有数据体 */
|
||||
/* 需要先根据 HTTP 响应头判断是否有数据体 */
|
||||
if (hdr_res->hdr.content_length == 0 ||
|
||||
(hdr_res->hdr.content_length == -1 && !hdr_res->hdr.chunked
|
||||
&& hdr_res->reply_status > 300 && hdr_res->reply_status < 400))
|
||||
@ -78,9 +78,9 @@ int http_client_get_respond(ACL_VSTREAM* client, ACL_JSON *json,
|
||||
http_hdr_res_free(hdr_res);
|
||||
return 0;
|
||||
}
|
||||
res = http_res_new(hdr_res); /* 创建 HTTP 响应体对象 */
|
||||
res = http_res_new(hdr_res); /* 创建 HTTP 响应体对象 */
|
||||
while (1) {
|
||||
/* 读数据体数据 */
|
||||
/* 读数据体数据 */
|
||||
ret = http_res_body_get_sync(res, client, buf, sizeof(buf) - 1);
|
||||
if (ret <= 0)
|
||||
break;
|
||||
@ -93,7 +93,7 @@ int http_client_get_respond(ACL_VSTREAM* client, ACL_JSON *json,
|
||||
acl_vstring_strcat(dump, buf);
|
||||
}
|
||||
|
||||
/* 因为 res 中含有 hdr_res 所以会一同连 hdr_res 释放 */
|
||||
/* 因为 res 中含有 hdr_res 所以会一同连 hdr_res 释放 */
|
||||
http_res_free(res);
|
||||
return (0);
|
||||
}
|
||||
|
@ -1,29 +1,29 @@
|
||||
#ifndef __HTTP_CLIENT_INCLUDE_H__
|
||||
#ifndef __HTTP_CLIENT_INCLUDE_H__
|
||||
#define __HTTP_CLIENT_INCLUDE_H__
|
||||
|
||||
/**
|
||||
* 向服务器按 POST 方式发送请求
|
||||
* @param client {ACL_VSTREAM*} 连接流
|
||||
* @param url {const char*} URL 字符串
|
||||
* @param keepalive {int} 是否与服务端保持长连接
|
||||
* @param gid_fmt {const char*} 数据格式:xml 或 json
|
||||
* @param body {char*} 数据体地址
|
||||
* @param len {int} 数据体长度
|
||||
* @param errnum {int*} 若非空则记录出错时的原因
|
||||
* @return {int} 0 表示成功,否则表示失败
|
||||
* 向服务器按 POST 方式发送请求
|
||||
* @param client {ACL_VSTREAM*} 连接流
|
||||
* @param url {const char*} URL 字符串
|
||||
* @param keepalive {int} 是否与服务端保持长连接
|
||||
* @param gid_fmt {const char*} 数据格式:xml 或 json
|
||||
* @param body {char*} 数据体地址
|
||||
* @param len {int} 数据体长度
|
||||
* @param errnum {int*} 若非空则记录出错时的原因
|
||||
* @return {int} 0 表示成功,否则表示失败
|
||||
*/
|
||||
int http_client_post_request(ACL_VSTREAM *client, const char *url, int keepalive,
|
||||
const char *gid_fmt, char* body, int len, int *errnum);
|
||||
|
||||
/**
|
||||
* 从服务器读取响应数据
|
||||
* @param client {ACL_VSTREAM*} 连接流
|
||||
* @param json {ACL_JSON*} 若非空,则采用 json 格式进行解析
|
||||
* @param xml {ACL_XML*} 若非空,则采用 xml 格式进行解析
|
||||
* @param errnum {int*} 若非空则记录出错时的原因
|
||||
* @param dump {ACL_VSTRING*} 非空则存储响应数据
|
||||
* @return {int} 0 表示成功,否则表示失败
|
||||
* 注:ACL_JSON* 和 ACL_XML* 必须有且只有一个非空
|
||||
* 从服务器读取响应数据
|
||||
* @param client {ACL_VSTREAM*} 连接流
|
||||
* @param json {ACL_JSON*} 若非空,则采用 json 格式进行解析
|
||||
* @param xml {ACL_XML*} 若非空,则采用 xml 格式进行解析
|
||||
* @param errnum {int*} 若非空则记录出错时的原因
|
||||
* @param dump {ACL_VSTRING*} 非空则存储响应数据
|
||||
* @return {int} 0 表示成功,否则表示失败
|
||||
* 注:ACL_JSON* 和 ACL_XML* 必须有且只有一个非空
|
||||
*/
|
||||
int http_client_get_respond(ACL_VSTREAM* client, ACL_JSON *json,
|
||||
ACL_XML *xml, int *errnum, ACL_VSTRING *dump);
|
||||
|
@ -1,11 +1,11 @@
|
||||
#include "lib_acl.h"
|
||||
#include "lib_acl.h"
|
||||
#include "lib_protocol.h"
|
||||
|
||||
#include "global.h"
|
||||
#include "gid.h"
|
||||
#include "lib_gid.h"
|
||||
|
||||
/* 使用线程局部变量,但注意此库不得编译成动态库XXX */
|
||||
/* 使用线程局部变量,但注意此库不得编译成动态库XXX */
|
||||
|
||||
static __thread ACL_VSTREAM *__client = NULL;
|
||||
|
||||
@ -83,14 +83,14 @@ const char *gid_client_serror(int errnum)
|
||||
} errors[] = {
|
||||
{ GID_OK, "ok" },
|
||||
|
||||
/* 客户端相关错误 */
|
||||
/* 客户端相关错误 */
|
||||
{ GID_ERR_INIT, "gid_client_init should called first" },
|
||||
{ GID_ERR_CONN, "connect server error" },
|
||||
{ GID_ERR_IO, "readwrite from server error" },
|
||||
{ GID_ERR_PROTO, "gid protocol error" },
|
||||
{ GID_ERR_SERVER, "gid server internal error" },
|
||||
|
||||
/* 服务端返回的错误 */
|
||||
/* 服务端返回的错误 */
|
||||
{ GID_ERR_SID, "sid invalid" },
|
||||
{ GID_ERR_OVERRIDE, "gid override" },
|
||||
{ GID_ERR_SAVE, "gid save error" },
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "lib_acl.h"
|
||||
#include "lib_acl.h"
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <getopt.h>
|
||||
@ -30,7 +30,7 @@ static void test_get_gid(const char *tag, int n)
|
||||
gettimeofday(&begin, NULL);
|
||||
|
||||
for (i = 0; i < n; i++) {
|
||||
/* 获得唯一 gid 号 */
|
||||
/* 获得唯一 gid 号 */
|
||||
gid = gid_next(tag, &errnum);
|
||||
if (gid < 0) {
|
||||
printf("error: %d, %s, gid: %lld\r\n",
|
||||
@ -137,7 +137,7 @@ int main(int argc, char *argv[])
|
||||
ACL_SLICE_FLAG_RTGC_OFF |
|
||||
ACL_SLICE_FLAG_LP64_ALIGN);
|
||||
|
||||
/* 初始化 */
|
||||
/* 初始化 */
|
||||
printf("proto: %d, addr: %s\n", proto, addr);
|
||||
gid_client_init(proto, addr);
|
||||
|
||||
|
@ -1,22 +1,22 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0) on Fri Dec 02 10:32:23 CST 2011 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
|
||||
<title>鎵€é<EFBFBD>ˆå¤Œè¢«</title>
|
||||
<title>所有类</title>
|
||||
<meta name="date" content="2011-12-02">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<h1 class="bar">鎵€é<EFBFBD>ˆå¤Œè¢«</h1>
|
||||
<h1 class="bar">所有类</h1>
|
||||
<div class="indexContainer">
|
||||
<ul>
|
||||
<li><a href="com/iker/gid/GidClient.html" title="com.iker.gidæ¶“î… æ®‘ç»«»" target="classFrame">GidClient</a></li>
|
||||
<li><a href="com/iker/gid/GidClientCmdLine.html" title="com.iker.gidæ¶“î… æ®‘ç»«»" target="classFrame">GidClientCmdLine</a></li>
|
||||
<li><a href="com/iker/gid/GidClientJson.html" title="com.iker.gidæ¶“î… æ®‘ç»«»" target="classFrame">GidClientJson</a></li>
|
||||
<li><a href="com/iker/gid/GidClientXml.html" title="com.iker.gidæ¶“î… æ®‘ç»«»" target="classFrame">GidClientXml</a></li>
|
||||
<li><a href="com/iker/gid/GidStatus.html" title="com.iker.gidæ¶“î… æ®‘ç»«»" target="classFrame">GidStatus</a></li>
|
||||
<li><a href="com/iker/gid/GidClient.html" title="com.iker.gid中的类" target="classFrame">GidClient</a></li>
|
||||
<li><a href="com/iker/gid/GidClientCmdLine.html" title="com.iker.gid中的类" target="classFrame">GidClientCmdLine</a></li>
|
||||
<li><a href="com/iker/gid/GidClientJson.html" title="com.iker.gid中的类" target="classFrame">GidClientJson</a></li>
|
||||
<li><a href="com/iker/gid/GidClientXml.html" title="com.iker.gid中的类" target="classFrame">GidClientXml</a></li>
|
||||
<li><a href="com/iker/gid/GidStatus.html" title="com.iker.gid中的类" target="classFrame">GidStatus</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
@ -1,22 +1,22 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0) on Fri Dec 02 10:32:23 CST 2011 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
|
||||
<title>鎵€é<EFBFBD>ˆå¤Œè¢«</title>
|
||||
<title>所有类</title>
|
||||
<meta name="date" content="2011-12-02">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<h1 class="bar">鎵€é<EFBFBD>ˆå¤Œè¢«</h1>
|
||||
<h1 class="bar">所有类</h1>
|
||||
<div class="indexContainer">
|
||||
<ul>
|
||||
<li><a href="com/iker/gid/GidClient.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidClient</a></li>
|
||||
<li><a href="com/iker/gid/GidClientCmdLine.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidClientCmdLine</a></li>
|
||||
<li><a href="com/iker/gid/GidClientJson.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidClientJson</a></li>
|
||||
<li><a href="com/iker/gid/GidClientXml.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidClientXml</a></li>
|
||||
<li><a href="com/iker/gid/GidStatus.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidStatus</a></li>
|
||||
<li><a href="com/iker/gid/GidClient.html" title="com.iker.gid中的类">GidClient</a></li>
|
||||
<li><a href="com/iker/gid/GidClientCmdLine.html" title="com.iker.gid中的类">GidClientCmdLine</a></li>
|
||||
<li><a href="com/iker/gid/GidClientJson.html" title="com.iker.gid中的类">GidClientJson</a></li>
|
||||
<li><a href="com/iker/gid/GidClientXml.html" title="com.iker.gid中的类">GidClientXml</a></li>
|
||||
<li><a href="com/iker/gid/GidStatus.html" title="com.iker.gid中的类">GidStatus</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<EFBFBD>ソ<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
@ -16,35 +16,35 @@
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>骼ョ繖ァ谿大ィエ蠢夭搓骰」繖・蜃。扈ゆスコ謨、 JavaScript驫<74></div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="迺コ螳<EFBFBD>郢<EFBFBD>オ濶ー蝓<EFBFBD>明轤ャ蟶エ"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">扈句ャェ邁ュ骰妹</a></li>
|
||||
<li class="navBarCell1Rev">扈ォサ</li>
|
||||
<li><a href="class-use/GidClient.html">豬」霍ィ謨、</a></li>
|
||||
<li><a href="package-tree.html">髀国</a></li>
|
||||
<li><a href="../../../deprecated-list.html">螳ク闌カ郢<EFBFBD>純カ</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">扈ア繹<EFBFBD>邏ゥ</a></li>
|
||||
<li><a href="../../../help-doc.html">逕ッ裵シ蟋ェ</a></li>
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/GidClient.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>豸灘ゥ∫ォエ豸軟≧陲ォ</li>
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ャゥ遶エ豸軟≧陲ォ</span></a></li>
|
||||
<li>上一个类</li>
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClient.html" target="_top">螯怜利轣ヲ</a></li>
|
||||
<li><a href="GidClient.html" target="_top">髀<EFBFBD>患赶矩暑カ</a></li>
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClient.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClient.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../allclasses-noframe.html">骼オ竄ャ髀亥、瑚「ォ</a></li>
|
||||
<li><a href="../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -60,17 +60,17 @@
|
||||
</div>
|
||||
<div>
|
||||
<ul class="subNavList">
|
||||
<li>蟋貞<EFBFBD>都ヲ: </li>
|
||||
<li>螳灘アス郞<EFBFBD> | </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_summary">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_summary">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>迺<EFBFBD>クセ邊冗挑蜍ャ譫。: </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_detail">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_detail">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_top">
|
||||
@ -80,7 +80,7 @@
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<div class="header">
|
||||
<div class="subTitle">com.iker.gid</div>
|
||||
<h2 title="扈ォサ GidClient" class="title">扈ォサ GidClient</h2>
|
||||
<h2 title="类 GidClient" class="title">类 GidClient</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
@ -95,15 +95,15 @@
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<dl>
|
||||
<dt>髏ゥ蟄伜クエ螳ク闌ャ辣。轢帶┛陲ォ:</dt>
|
||||
<dd><a href="../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClientCmdLine</a>, <a href="../../../com/iker/gid/GidClientJson.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClientJson</a>, <a href="../../../com/iker/gid/GidClientXml.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClientXml</a></dd>
|
||||
<dt>直接已知子类:</dt>
|
||||
<dd><a href="../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid中的类">GidClientCmdLine</a>, <a href="../../../com/iker/gid/GidClientJson.html" title="com.iker.gid中的类">GidClientJson</a>, <a href="../../../com/iker/gid/GidClientXml.html" title="com.iker.gid中的类">GidClientXml</a></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public abstract class <span class="strong">GidClient</span>
|
||||
extends java.lang.Object</pre>
|
||||
<div class="block">骼カ蛟溯埋骼コ繝・蠖<EFBFBD></div>
|
||||
<dl><dt><span class="strong">豬」貊<EFBFBD>ぎ<EFBFBD>:</span></dt>
|
||||
<div class="block">抽象接口</div>
|
||||
<dl><dt><span class="strong">作者:</span></dt>
|
||||
<dd>zsx</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
@ -116,11 +116,11 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀句怯竄ャ迥イ讚貞ァ貞<EFBFBD>都ヲ</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="髀句怯竄ャ迥イ讚貞ァ貞<EFBFBD>都ヲ逅岑, 骰呈・<E59188><EFBFBD>暑蜍ッ竄ャ迥イ讚帝骨蟯σ帝夢<E5B89D>">
|
||||
<caption><span>髀句怯竄ャ迥イ讚<EFBFBD></span><span class="tabEnd"> </span></caption>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">髀句怯竄ャ迥イ讚帝骨蟯<EFBFBD><EFBFBD>髀ь</th>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../com/iker/gid/GidClient.html#GidClient(java.lang.String, int, java.lang.String)">GidClient</a></strong>(java.lang.String ip,
|
||||
@ -135,29 +135,29 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀りァ<EFBFBD>。カ蟋貞<EFBFBD>都ヲ</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="髀りァ<EFBFBD>。カ蟋貞<EFBFBD>都ヲ逅岑, 骰呈・<E59188><EFBFBD>盾隗<E79BBE>。カ骰懷イσ帝夢<E5B89D>">
|
||||
<caption><span>髀りァ<EFBFBD>。カ</span><span class="tabEnd"> </span></caption>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">髣<EFBFBD>┏逡セ扈暦ケ諡ー扈ォ隸イ轢キ</th>
|
||||
<th class="colLast" scope="col">髀りァ<EFBFBD>。カ骰懷イ<EFBFBD><EFBFBD>髀ь</th>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>abstract long</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../com/iker/gid/GidClient.html#gidNext()">gidNext</a></strong>()</code>
|
||||
<div class="block">髑セ蟲ー邱ア豸灘ャゥ遶エ豸軟>謨ョ豸凪ぎID骰匚</div>
|
||||
<div class="block">获得下一个唯一ID号</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../com/iker/gid/GidClient.html#setConnectTimeout(int)">setConnectTimeout</a></strong>(int timeout)</code>
|
||||
<div class="block">迺∝鴬逍<EFBFBD>シ∵サ<EFBFBD>ケ幃室繝ヲ讀る翌エ</div>
|
||||
<div class="block">设置络连接时间</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../com/iker/gid/GidClient.html#setRdTimeout(int)">setRdTimeout</a></strong>(int timeout)</code>
|
||||
<div class="block">迺∝鴬逍<EFBFBD>O迺<EFBFBD><EFBFBD>遘エ髀<EFBFBD>扱讀る翌エ</div>
|
||||
<div class="block">设置IO读超时时间</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -165,7 +165,7 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>豬<EFBFBD>蠎」陲ォ郛<EFBFBD><EFBFBD>」咎勢蜍ャ譟溷ィ鴛 java.lang.Object</h3>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
@ -181,7 +181,7 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀句怯竄ャ迥イ讚堤仲<EFBFBD>セ邊冗挑蜍ャ譫。</h3>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="GidClient(java.lang.String, int, java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
@ -200,7 +200,7 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀りァ<EFBFBD>。カ迺<EFBFBD>クセ邊冗挑蜍ャ譫。</h3>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="gidNext()">
|
||||
<!-- -->
|
||||
</a>
|
||||
@ -208,8 +208,8 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList">
|
||||
<h4>gidNext</h4>
|
||||
<pre>public abstract long gidNext()</pre>
|
||||
<div class="block">髑セ蟲ー邱ア豸灘ャゥ遶エ豸軟>謨ョ豸凪ぎID骰匚</div>
|
||||
<dl><dt><span class="strong">譚ゥ譁ソ豢<EFBFBD>:</span></dt><dd>譚ゥ譁ソ豢夜込訷咏ォエ髏ィ<EFBFBD>64豬」蠍<EFBFBD>團髀∝クョ邏晄ソ。蛯帷♂譚ゥ譁ソ豢夜濠シ < 0 骰呈ャ偵<EFBFBD>サ蜩<EFBFBD>坏髢ソ<EFBFBD></dd></dl>
|
||||
<div class="block">获得下一个唯一ID号</div>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>返回唯一的64位整数,如果返回值 < 0 则表示出错</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setRdTimeout(int)">
|
||||
@ -219,9 +219,9 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList">
|
||||
<h4>setRdTimeout</h4>
|
||||
<pre>public void setRdTimeout(int timeout)</pre>
|
||||
<div class="block">迺∝鴬逍<EFBFBD>O迺<EFBFBD><EFBFBD>遘エ髀<EFBFBD>扱讀る翌エ</div>
|
||||
<dl><dt><span class="strong">骰吝<EFBFBD>證<EFBFBD>:</span></dt><dd><code>timeout</code> - 逑貞属讀る純蝣墓」ソ髞帛<EFBFBD>晏エ滓オ」蠍<EFBFBD>エ溽サ画時邏夐縛螻ス都ァ髀区サ隨臥秩蜑ァ逍<EFBFBD>ァ昴f讀る翌霎セ邏<EFBFBD>
|
||||
骰呈ャ丞閥髢ョ繖ァ蟾ア髏ェ菴ク竄ャ髣エ雍<EFBFBD>30扈薗</dd></dl>
|
||||
<div class="block">设置IO读超时时间</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>timeout</code> - 超时时间(单位为秒),如果不设置此时间,
|
||||
则内部缺省值为30秒</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setConnectTimeout(int)">
|
||||
@ -231,9 +231,9 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList">
|
||||
<h4>setConnectTimeout</h4>
|
||||
<pre>public void setConnectTimeout(int timeout)</pre>
|
||||
<div class="block">迺∝鴬逍<EFBFBD>シ∵サ<EFBFBD>ケ幃室繝ヲ讀る翌エ</div>
|
||||
<dl><dt><span class="strong">骰吝<EFBFBD>證<EFBFBD>:</span></dt><dd><code>timeout</code> - 逑貞属讀る純蝣墓」ソ髞帛<EFBFBD>晏エ滓オ」蠍<EFBFBD>エ溽サ画時邏夐縛螻ス都ァ髀区サ隨臥秩蜑ァ逍<EFBFBD>ァ昴f讀る翌霎セ邏<EFBFBD>
|
||||
骰呈ャ丞閥髢ョ繖ァ蟾ア髏ェ菴ク竄ャ髣エ雍<EFBFBD>10扈薗</dd></dl>
|
||||
<div class="block">设置络连接时间</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>timeout</code> - 超时时间(单位为秒),如果不设置此时间,
|
||||
则内部缺省值为10秒</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
@ -246,30 +246,30 @@ extends java.lang.Object</pre>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="迺コ螳<EFBFBD>郢<EFBFBD>オ濶ー蝓<EFBFBD>明轤ャ蟶エ"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">扈句ャェ邁ュ骰妹</a></li>
|
||||
<li class="navBarCell1Rev">扈ォサ</li>
|
||||
<li><a href="class-use/GidClient.html">豬」霍ィ謨、</a></li>
|
||||
<li><a href="package-tree.html">髀国</a></li>
|
||||
<li><a href="../../../deprecated-list.html">螳ク闌カ郢<EFBFBD>純カ</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">扈ア繹<EFBFBD>邏ゥ</a></li>
|
||||
<li><a href="../../../help-doc.html">逕ッ裵シ蟋ェ</a></li>
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/GidClient.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>豸灘ゥ∫ォエ豸軟≧陲ォ</li>
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ャゥ遶エ豸軟≧陲ォ</span></a></li>
|
||||
<li>上一个类</li>
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClient.html" target="_top">螯怜利轣ヲ</a></li>
|
||||
<li><a href="GidClient.html" target="_top">髀<EFBFBD>患赶矩暑カ</a></li>
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClient.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClient.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../allclasses-noframe.html">骼オ竄ャ髀亥、瑚「ォ</a></li>
|
||||
<li><a href="../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -285,17 +285,17 @@ extends java.lang.Object</pre>
|
||||
</div>
|
||||
<div>
|
||||
<ul class="subNavList">
|
||||
<li>蟋貞<EFBFBD>都ヲ: </li>
|
||||
<li>螳灘アス郞<EFBFBD> | </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_summary">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_summary">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>迺<EFBFBD>クセ邊冗挑蜍ャ譫。: </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_detail">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_detail">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
|
@ -1,4 +1,4 @@
|
||||
<EFBFBD>ソ<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
@ -16,35 +16,35 @@
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>骼ョ繖ァ谿大ィエ蠢夭搓骰」繖・蜃。扈ゆスコ謨、 JavaScript驫<74></div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="迺コ螳<EFBFBD>郢<EFBFBD>オ濶ー蝓<EFBFBD>明轤ャ蟶エ"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">扈句ャェ邁ュ骰妹</a></li>
|
||||
<li class="navBarCell1Rev">扈ォサ</li>
|
||||
<li><a href="class-use/GidClientCmdLine.NameValue.html">豬」霍ィ謨、</a></li>
|
||||
<li><a href="package-tree.html">髀国</a></li>
|
||||
<li><a href="../../../deprecated-list.html">螳ク闌カ郢<EFBFBD>純カ</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">扈ア繹<EFBFBD>邏ゥ</a></li>
|
||||
<li><a href="../../../help-doc.html">逕ッ裵シ蟋ェ</a></li>
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/GidClientCmdLine.NameValue.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ゥ∫ォエ豸軟≧陲ォ</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ャゥ遶エ豸軟≧陲ォ</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gid中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClientCmdLine.NameValue.html" target="_top">螯怜利轣ヲ</a></li>
|
||||
<li><a href="GidClientCmdLine.NameValue.html" target="_top">髀<EFBFBD>患赶矩暑カ</a></li>
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClientCmdLine.NameValue.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClientCmdLine.NameValue.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../allclasses-noframe.html">骼オ竄ャ髀亥、瑚「ォ</a></li>
|
||||
<li><a href="../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -60,17 +60,17 @@
|
||||
</div>
|
||||
<div>
|
||||
<ul class="subNavList">
|
||||
<li>蟋貞<EFBFBD>都ヲ: </li>
|
||||
<li>螳灘アス郞<EFBFBD> | </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_summary">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#methods_inherited_from_class_java.lang.Object">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#methods_inherited_from_class_java.lang.Object">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>迺<EFBFBD>クセ邊冗挑蜍ャ譫。: </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_detail">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li>髀りァ<EFBFBD>。カ</li>
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li>方法</li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_top">
|
||||
@ -80,7 +80,7 @@
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<div class="header">
|
||||
<div class="subTitle">com.iker.gid</div>
|
||||
<h2 title="扈ォサ GidClientCmdLine.NameValue" class="title">扈ォサ GidClientCmdLine.NameValue</h2>
|
||||
<h2 title="类 GidClientCmdLine.NameValue" class="title">类 GidClientCmdLine.NameValue</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
@ -95,14 +95,14 @@
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<dl>
|
||||
<dt>轣丈セ譽エ扈ォサ:</dt>
|
||||
<dd><a href="../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClientCmdLine</a></dd>
|
||||
<dt>封闭类:</dt>
|
||||
<dd><a href="../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid中的类">GidClientCmdLine</a></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public final class <span class="strong">GidClientCmdLine.NameValue</span>
|
||||
extends java.lang.Object</pre>
|
||||
<div class="block">name-value 轢オ蝨ュ陲ォ骰ィ螫ャ陲ォ</div>
|
||||
<div class="block">name-value 对类型类</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
@ -114,11 +114,11 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀句怯竄ャ迥イ讚貞ァ貞<EFBFBD>都ヲ</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="髀句怯竄ャ迥イ讚貞ァ貞<EFBFBD>都ヲ逅岑, 骰呈・<E59188><EFBFBD>暑蜍ッ竄ャ迥イ讚帝骨蟯σ帝夢<E5B89D>">
|
||||
<caption><span>髀句怯竄ャ迥イ讚<EFBFBD></span><span class="tabEnd"> </span></caption>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">髀句怯竄ャ迥イ讚帝骨蟯<EFBFBD><EFBFBD>髀ь</th>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../com/iker/gid/GidClientCmdLine.NameValue.html#GidClientCmdLine.NameValue(java.lang.String, java.lang.String)">GidClientCmdLine.NameValue</a></strong>(java.lang.String name,
|
||||
@ -132,12 +132,12 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀りァ<EFBFBD>。カ蟋貞<EFBFBD>都ヲ</h3>
|
||||
<h3>方法概要</h3>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>豬<EFBFBD>蠎」陲ォ郛<EFBFBD><EFBFBD>」咎勢蜍ャ譟溷ィ鴛 java.lang.Object</h3>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
@ -153,7 +153,7 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀句怯竄ャ迥イ讚堤仲<EFBFBD>セ邊冗挑蜍ャ譫。</h3>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="GidClientCmdLine.NameValue(java.lang.String, java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
@ -174,30 +174,30 @@ extends java.lang.Object</pre>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="迺コ螳<EFBFBD>郢<EFBFBD>オ濶ー蝓<EFBFBD>明轤ャ蟶エ"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">扈句ャェ邁ュ骰妹</a></li>
|
||||
<li class="navBarCell1Rev">扈ォサ</li>
|
||||
<li><a href="class-use/GidClientCmdLine.NameValue.html">豬」霍ィ謨、</a></li>
|
||||
<li><a href="package-tree.html">髀国</a></li>
|
||||
<li><a href="../../../deprecated-list.html">螳ク闌カ郢<EFBFBD>純カ</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">扈ア繹<EFBFBD>邏ゥ</a></li>
|
||||
<li><a href="../../../help-doc.html">逕ッ裵シ蟋ェ</a></li>
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/GidClientCmdLine.NameValue.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ゥ∫ォエ豸軟≧陲ォ</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ャゥ遶エ豸軟≧陲ォ</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gid中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClientCmdLine.NameValue.html" target="_top">螯怜利轣ヲ</a></li>
|
||||
<li><a href="GidClientCmdLine.NameValue.html" target="_top">髀<EFBFBD>患赶矩暑カ</a></li>
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClientCmdLine.NameValue.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClientCmdLine.NameValue.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../allclasses-noframe.html">骼オ竄ャ髀亥、瑚「ォ</a></li>
|
||||
<li><a href="../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -213,17 +213,17 @@ extends java.lang.Object</pre>
|
||||
</div>
|
||||
<div>
|
||||
<ul class="subNavList">
|
||||
<li>蟋貞<EFBFBD>都ヲ: </li>
|
||||
<li>螳灘アス郞<EFBFBD> | </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_summary">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#methods_inherited_from_class_java.lang.Object">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#methods_inherited_from_class_java.lang.Object">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>迺<EFBFBD>クセ邊冗挑蜍ャ譫。: </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_detail">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li>髀りァ<EFBFBD>。カ</li>
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li>方法</li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
|
@ -1,4 +1,4 @@
|
||||
<EFBFBD>ソ<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
@ -16,35 +16,35 @@
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>骼ョ繖ァ谿大ィエ蠢夭搓骰」繖・蜃。扈ゆスコ謨、 JavaScript驫<74></div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="迺コ螳<EFBFBD>郢<EFBFBD>オ濶ー蝓<EFBFBD>明轤ャ蟶エ"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">扈句ャェ邁ュ骰妹</a></li>
|
||||
<li class="navBarCell1Rev">扈ォサ</li>
|
||||
<li><a href="class-use/GidClientCmdLine.Tokens.html">豬」霍ィ謨、</a></li>
|
||||
<li><a href="package-tree.html">髀国</a></li>
|
||||
<li><a href="../../../deprecated-list.html">螳ク闌カ郢<EFBFBD>純カ</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">扈ア繹<EFBFBD>邏ゥ</a></li>
|
||||
<li><a href="../../../help-doc.html">逕ッ裵シ蟋ェ</a></li>
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/GidClientCmdLine.Tokens.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.NameValue.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ゥ∫ォエ豸軟≧陲ォ</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientJson.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ャゥ遶エ豸軟≧陲ォ</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.NameValue.html" title="com.iker.gid中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientJson.html" title="com.iker.gid中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClientCmdLine.Tokens.html" target="_top">螯怜利轣ヲ</a></li>
|
||||
<li><a href="GidClientCmdLine.Tokens.html" target="_top">髀<EFBFBD>患赶矩暑カ</a></li>
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClientCmdLine.Tokens.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClientCmdLine.Tokens.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../allclasses-noframe.html">骼オ竄ャ髀亥、瑚「ォ</a></li>
|
||||
<li><a href="../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -60,17 +60,17 @@
|
||||
</div>
|
||||
<div>
|
||||
<ul class="subNavList">
|
||||
<li>蟋貞<EFBFBD>都ヲ: </li>
|
||||
<li>螳灘アス郞<EFBFBD> | </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_summary">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_summary">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>迺<EFBFBD>クセ邊冗挑蜍ャ譫。: </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_detail">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_detail">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_top">
|
||||
@ -80,7 +80,7 @@
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<div class="header">
|
||||
<div class="subTitle">com.iker.gid</div>
|
||||
<h2 title="扈ォサ GidClientCmdLine.Tokens" class="title">扈ォサ GidClientCmdLine.Tokens</h2>
|
||||
<h2 title="类 GidClientCmdLine.Tokens" class="title">类 GidClientCmdLine.Tokens</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
@ -95,14 +95,14 @@
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<dl>
|
||||
<dt>轣丈セ譽エ扈ォサ:</dt>
|
||||
<dd><a href="../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClientCmdLine</a></dd>
|
||||
<dt>封闭类:</dt>
|
||||
<dd><a href="../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid中的类">GidClientCmdLine</a></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public final class <span class="strong">GidClientCmdLine.Tokens</span>
|
||||
extends java.lang.Object</pre>
|
||||
<div class="block">骼キ蝸怜梹轢帶・<EFBFBD>メ豸楢軒谿醍サォ莨咏エ晉仲繝ァ陲ォ轣丞酪竄ャ貊<EFBFBD>u骰雁ー問ぎ豼<EFBFBD><EFBFBD>譚ゥ豸懣泊骼キ蝸怜梹髞帛アセ證滄嫉裵ス迚ク蟇ョ蠢手エ滄縛<EFBFBD>
|
||||
<div class="block">拆分字符串的类,该类将“名值”对进行拆分,数据格式为:
|
||||
name1^value1|name2^value2|...</div>
|
||||
</li>
|
||||
</ul>
|
||||
@ -115,11 +115,11 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀句怯竄ャ迥イ讚貞ァ貞<EFBFBD>都ヲ</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="髀句怯竄ャ迥イ讚貞ァ貞<EFBFBD>都ヲ逅岑, 骰呈・<E59188><EFBFBD>暑蜍ッ竄ャ迥イ讚帝骨蟯σ帝夢<E5B89D>">
|
||||
<caption><span>髀句怯竄ャ迥イ讚<EFBFBD></span><span class="tabEnd"> </span></caption>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">髀句怯竄ャ迥イ讚帝骨蟯<EFBFBD><EFBFBD>髀ь</th>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../com/iker/gid/GidClientCmdLine.Tokens.html#GidClientCmdLine.Tokens(java.lang.String)">GidClientCmdLine.Tokens</a></strong>(java.lang.String content)</code> </td>
|
||||
@ -132,12 +132,12 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀りァ<EFBFBD>。カ蟋貞<EFBFBD>都ヲ</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="髀りァ<EFBFBD>。カ蟋貞<EFBFBD>都ヲ逅岑, 骰呈・<E59188><EFBFBD>盾隗<E79BBE>。カ骰懷イσ帝夢<E5B89D>">
|
||||
<caption><span>髀りァ<EFBFBD>。カ</span><span class="tabEnd"> </span></caption>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">髣<EFBFBD>┏逡セ扈暦ケ諡ー扈ォ隸イ轢キ</th>
|
||||
<th class="colLast" scope="col">髀りァ<EFBFBD>。カ骰懷イ<EFBFBD><EFBFBD>髀ь</th>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
@ -156,7 +156,7 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>豬<EFBFBD>蠎」陲ォ郛<EFBFBD><EFBFBD>」咎勢蜍ャ譟溷ィ鴛 java.lang.Object</h3>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
@ -172,7 +172,7 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀句怯竄ャ迥イ讚堤仲<EFBFBD>セ邊冗挑蜍ャ譫。</h3>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="GidClientCmdLine.Tokens(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
@ -189,7 +189,7 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀りァ<EFBFBD>。カ迺<EFBFBD>クセ邊冗挑蜍ャ譫。</h3>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getString(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
@ -227,30 +227,30 @@ extends java.lang.Object</pre>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="迺コ螳<EFBFBD>郢<EFBFBD>オ濶ー蝓<EFBFBD>明轤ャ蟶エ"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">扈句ャェ邁ュ骰妹</a></li>
|
||||
<li class="navBarCell1Rev">扈ォサ</li>
|
||||
<li><a href="class-use/GidClientCmdLine.Tokens.html">豬」霍ィ謨、</a></li>
|
||||
<li><a href="package-tree.html">髀国</a></li>
|
||||
<li><a href="../../../deprecated-list.html">螳ク闌カ郢<EFBFBD>純カ</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">扈ア繹<EFBFBD>邏ゥ</a></li>
|
||||
<li><a href="../../../help-doc.html">逕ッ裵シ蟋ェ</a></li>
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/GidClientCmdLine.Tokens.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.NameValue.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ゥ∫ォエ豸軟≧陲ォ</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientJson.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ャゥ遶エ豸軟≧陲ォ</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.NameValue.html" title="com.iker.gid中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientJson.html" title="com.iker.gid中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClientCmdLine.Tokens.html" target="_top">螯怜利轣ヲ</a></li>
|
||||
<li><a href="GidClientCmdLine.Tokens.html" target="_top">髀<EFBFBD>患赶矩暑カ</a></li>
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClientCmdLine.Tokens.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClientCmdLine.Tokens.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../allclasses-noframe.html">骼オ竄ャ髀亥、瑚「ォ</a></li>
|
||||
<li><a href="../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -266,17 +266,17 @@ extends java.lang.Object</pre>
|
||||
</div>
|
||||
<div>
|
||||
<ul class="subNavList">
|
||||
<li>蟋貞<EFBFBD>都ヲ: </li>
|
||||
<li>螳灘アス郞<EFBFBD> | </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_summary">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_summary">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>迺<EFBFBD>クセ邊冗挑蜍ャ譫。: </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_detail">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_detail">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
|
@ -1,4 +1,4 @@
|
||||
<EFBFBD>ソ<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
@ -16,35 +16,35 @@
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>骼ョ繖ァ谿大ィエ蠢夭搓骰」繖・蜃。扈ゆスコ謨、 JavaScript驫<74></div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="迺コ螳<EFBFBD>郢<EFBFBD>オ濶ー蝓<EFBFBD>明轤ャ蟶エ"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">扈句ャェ邁ュ骰妹</a></li>
|
||||
<li class="navBarCell1Rev">扈ォサ</li>
|
||||
<li><a href="class-use/GidClientCmdLine.html">豬」霍ィ謨、</a></li>
|
||||
<li><a href="package-tree.html">髀国</a></li>
|
||||
<li><a href="../../../deprecated-list.html">螳ク闌カ郢<EFBFBD>純カ</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">扈ア繹<EFBFBD>邏ゥ</a></li>
|
||||
<li><a href="../../../help-doc.html">逕ッ裵シ蟋ェ</a></li>
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/GidClientCmdLine.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ゥ∫ォエ豸軟≧陲ォ</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.NameValue.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ャゥ遶エ豸軟≧陲ォ</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.NameValue.html" title="com.iker.gid中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClientCmdLine.html" target="_top">螯怜利轣ヲ</a></li>
|
||||
<li><a href="GidClientCmdLine.html" target="_top">髀<EFBFBD>患赶矩暑カ</a></li>
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClientCmdLine.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClientCmdLine.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../allclasses-noframe.html">骼オ竄ャ髀亥、瑚「ォ</a></li>
|
||||
<li><a href="../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -60,17 +60,17 @@
|
||||
</div>
|
||||
<div>
|
||||
<ul class="subNavList">
|
||||
<li>蟋貞<EFBFBD>都ヲ: </li>
|
||||
<li><a href="#nested_class_summary">螳灘アス郞<EFBFBD></a> | </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_summary">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_summary">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>概要: </li>
|
||||
<li><a href="#nested_class_summary">嵌套</a> | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>迺<EFBFBD>クセ邊冗挑蜍ャ譫。: </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_detail">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_detail">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_top">
|
||||
@ -80,14 +80,14 @@
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<div class="header">
|
||||
<div class="subTitle">com.iker.gid</div>
|
||||
<h2 title="扈ォサ GidClientCmdLine" class="title">扈ォサ GidClientCmdLine</h2>
|
||||
<h2 title="类 GidClientCmdLine" class="title">类 GidClientCmdLine</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">com.iker.gid.GidClient</a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid中的类">com.iker.gid.GidClient</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.iker.gid.GidClientCmdLine</li>
|
||||
@ -102,10 +102,10 @@
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public final class <span class="strong">GidClientCmdLine</span>
|
||||
extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClient</a></pre>
|
||||
<div class="block">骰帶<EFBFBD>謚、逅帛アセ譟溷ッョ蠢守イ<EFBFBD>GID髀亥カ<EFBFBD>ァ滄坤繖・蠖<EFBFBD>ッー讌謨ョ豸凪ぎID骰吝<EFBFBD>邏晞巡訷壽メ謳エ譌<EFBFBD>∵豬」霍ィ謨、迺<EFBFBD>Θ譟溷ッョ蠢灘ス<EFBFBD>ッー讌謨ョ豸凪ぎID骰吝<EFBFBD>邏<EFBFBD>
|
||||
謳エ譌<EFBFBD>∵骰呎<EFBFBD>ァ蝟<EFBFBD>オ懷コ「貉<EFBFBD>鵠窶ウ讚帝勢蜍ッ蜴、郛<EFBFBD>〝竄ャ螟舌<EFBFBD></div>
|
||||
<dl><dt><span class="strong">豬」貊<EFBFBD>ぎ<EFBFBD>:</span></dt>
|
||||
extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid中的类">GidClient</a></pre>
|
||||
<div class="block">命令行方式从GID服务器取得唯一ID号,是否应该使用该方式取得唯一ID号,
|
||||
应该取决于服务器的配置选项</div>
|
||||
<dl><dt><span class="strong">作者:</span></dt>
|
||||
<dd>zsx</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
@ -118,23 +118,23 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
<li class="blockList"><a name="nested_class_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>螳灘アス郞懃サォ扈偃岌迹普</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="螳灘アス郞懃サォ扈偃岌迹穂スス縲<EFBFBD>, 骰呈・<E59188><EFBFBD>ョ灘アス郞懃サォ隸イ諡ー迹呻ス牙匐">
|
||||
<caption><span>螳灘アス郞懃サォサ</span><span class="tabEnd"> </span></caption>
|
||||
<h3>嵌套类概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="嵌套类概要表, 列表嵌套类和解释">
|
||||
<caption><span>嵌套类</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">髣<EFBFBD>┏逡セ扈暦ケ諡ー扈ォ隸イ轢キ</th>
|
||||
<th class="colLast" scope="col">扈ォ隸イ諡ー迺<EFBFBD>ュ俶ァ<EFBFBD></th>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">类和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>class </code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../com/iker/gid/GidClientCmdLine.NameValue.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClientCmdLine.NameValue</a></strong></code>
|
||||
<div class="block">name-value 轢オ蝨ュ陲ォ骰ィ螫ャ陲ォ</div>
|
||||
<td class="colLast"><code><strong><a href="../../../com/iker/gid/GidClientCmdLine.NameValue.html" title="com.iker.gid中的类">GidClientCmdLine.NameValue</a></strong></code>
|
||||
<div class="block">name-value 对类型类</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>class </code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClientCmdLine.Tokens</a></strong></code>
|
||||
<div class="block">骼キ蝸怜梹轢帶・<EFBFBD>メ豸楢軒谿醍サォ莨咏エ晉仲繝ァ陲ォ轣丞酪竄ャ貊<EFBFBD>u骰雁ー問ぎ豼<EFBFBD><EFBFBD>譚ゥ豸懣泊骼キ蝸怜梹髞帛アセ證滄嫉裵ス迚ク蟇ョ蠢手エ滄縛<EFBFBD>
|
||||
<td class="colLast"><code><strong><a href="../../../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gid中的类">GidClientCmdLine.Tokens</a></strong></code>
|
||||
<div class="block">拆分字符串的类,该类将“名值”对进行拆分,数据格式为:
|
||||
name1^value1|name2^value2|...</div>
|
||||
</td>
|
||||
</tr>
|
||||
@ -146,11 +146,11 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀句怯竄ャ迥イ讚貞ァ貞<EFBFBD>都ヲ</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="髀句怯竄ャ迥イ讚貞ァ貞<EFBFBD>都ヲ逅岑, 骰呈・<E59188><EFBFBD>暑蜍ッ竄ャ迥イ讚帝骨蟯σ帝夢<E5B89D>">
|
||||
<caption><span>髀句怯竄ャ迥イ讚<EFBFBD></span><span class="tabEnd"> </span></caption>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">髀句怯竄ャ迥イ讚帝骨蟯<EFBFBD><EFBFBD>髀ь</th>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../com/iker/gid/GidClientCmdLine.html#GidClientCmdLine(java.lang.String, int, java.lang.String)">GidClientCmdLine</a></strong>(java.lang.String ip,
|
||||
@ -165,17 +165,17 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀りァ<EFBFBD>。カ蟋貞<EFBFBD>都ヲ</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="髀りァ<EFBFBD>。カ蟋貞<EFBFBD>都ヲ逅岑, 骰呈・<E59188><EFBFBD>盾隗<E79BBE>。カ骰懷イσ帝夢<E5B89D>">
|
||||
<caption><span>髀りァ<EFBFBD>。カ</span><span class="tabEnd"> </span></caption>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">髣<EFBFBD>┏逡セ扈暦ケ諡ー扈ォ隸イ轢キ</th>
|
||||
<th class="colLast" scope="col">髀りァ<EFBFBD>。カ骰懷イ<EFBFBD><EFBFBD>髀ь</th>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>long</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../com/iker/gid/GidClientCmdLine.html#gidNext()">gidNext</a></strong>()</code>
|
||||
<div class="block">髑セ蟲ー邱ア豸灘ャゥ遶エ豸軟>謨ョ豸凪ぎID骰匚</div>
|
||||
<div class="block">获得下一个唯一ID号</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
@ -187,14 +187,14 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.iker.gid.GidClient">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>豬<EFBFBD>蠎」陲ォ郛<EFBFBD><EFBFBD>」咎勢蜍ャ譟溷ィ鴛 com.iker.gid.<a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClient</a></h3>
|
||||
<h3>从类继承的方法 com.iker.gid.<a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid中的类">GidClient</a></h3>
|
||||
<code><a href="../../../com/iker/gid/GidClient.html#setConnectTimeout(int)">setConnectTimeout</a>, <a href="../../../com/iker/gid/GidClient.html#setRdTimeout(int)">setRdTimeout</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>豬<EFBFBD>蠎」陲ォ郛<EFBFBD><EFBFBD>」咎勢蜍ャ譟溷ィ鴛 java.lang.Object</h3>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
@ -210,7 +210,7 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀句怯竄ャ迥イ讚堤仲<EFBFBD>セ邊冗挑蜍ャ譫。</h3>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="GidClientCmdLine(java.lang.String, int, java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
@ -229,7 +229,7 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀りァ<EFBFBD>。カ迺<EFBFBD>クセ邊冗挑蜍ャ譫。</h3>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="gidNext()">
|
||||
<!-- -->
|
||||
</a>
|
||||
@ -237,12 +237,12 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
<li class="blockList">
|
||||
<h4>gidNext</h4>
|
||||
<pre>public long gidNext()</pre>
|
||||
<div class="block"><strong>豬<EFBFBD>蠎」陲ォ貔カ蠍<EFBFBD>泓髏ィ蜍ョ訒ゥ髀ь: <code><a href="../../../com/iker/gid/GidClient.html#gidNext()">GidClient</a></code></strong></div>
|
||||
<div class="block">髑セ蟲ー邱ア豸灘ャゥ遶エ豸軟>謨ョ豸凪ぎID骰匚</div>
|
||||
<div class="block"><strong>从类复制的说明: <code><a href="../../../com/iker/gid/GidClient.html#gidNext()">GidClient</a></code></strong></div>
|
||||
<div class="block">获得下一个唯一ID号</div>
|
||||
<dl>
|
||||
<dt><strong>骼ク蝗ァ逡セ髑ー<EFBFBD>:</strong></dt>
|
||||
<dd><code><a href="../../../com/iker/gid/GidClient.html#gidNext()">gidNext</a></code> 骰ヲ繖ァ陲ォ豸働 <code><a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClient</a></code></dd>
|
||||
<dt><span class="strong">譚ゥ譁ソ豢<EFBFBD>:</span></dt><dd>譚ゥ譁ソ豢夜込訷咏ォエ髏ィ<EFBFBD>64豬」蠍<EFBFBD>團髀∝クョ邏晄ソ。蛯帷♂譚ゥ譁ソ豢夜濠シ < 0 骰呈ャ偵<EFBFBD>サ蜩<EFBFBD>坏髢ソ<EFBFBD></dd></dl>
|
||||
<dt><strong>指定者:</strong></dt>
|
||||
<dd><code><a href="../../../com/iker/gid/GidClient.html#gidNext()">gidNext</a></code> 在类中 <code><a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid中的类">GidClient</a></code></dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>返回唯一的64位整数,如果返回值 < 0 则表示出错</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="main(java.lang.String[])">
|
||||
@ -264,30 +264,30 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="迺コ螳<EFBFBD>郢<EFBFBD>オ濶ー蝓<EFBFBD>明轤ャ蟶エ"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">扈句ャェ邁ュ骰妹</a></li>
|
||||
<li class="navBarCell1Rev">扈ォサ</li>
|
||||
<li><a href="class-use/GidClientCmdLine.html">豬」霍ィ謨、</a></li>
|
||||
<li><a href="package-tree.html">髀国</a></li>
|
||||
<li><a href="../../../deprecated-list.html">螳ク闌カ郢<EFBFBD>純カ</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">扈ア繹<EFBFBD>邏ゥ</a></li>
|
||||
<li><a href="../../../help-doc.html">逕ッ裵シ蟋ェ</a></li>
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/GidClientCmdLine.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ゥ∫ォエ豸軟≧陲ォ</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.NameValue.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ャゥ遶エ豸軟≧陲ォ</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.NameValue.html" title="com.iker.gid中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClientCmdLine.html" target="_top">螯怜利轣ヲ</a></li>
|
||||
<li><a href="GidClientCmdLine.html" target="_top">髀<EFBFBD>患赶矩暑カ</a></li>
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClientCmdLine.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClientCmdLine.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../allclasses-noframe.html">骼オ竄ャ髀亥、瑚「ォ</a></li>
|
||||
<li><a href="../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -303,17 +303,17 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
</div>
|
||||
<div>
|
||||
<ul class="subNavList">
|
||||
<li>蟋貞<EFBFBD>都ヲ: </li>
|
||||
<li><a href="#nested_class_summary">螳灘アス郞<EFBFBD></a> | </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_summary">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_summary">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>概要: </li>
|
||||
<li><a href="#nested_class_summary">嵌套</a> | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>迺<EFBFBD>クセ邊冗挑蜍ャ譫。: </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_detail">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_detail">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
|
@ -1,4 +1,4 @@
|
||||
<EFBFBD>ソ<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
@ -16,35 +16,35 @@
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>骼ョ繖ァ谿大ィエ蠢夭搓骰」繖・蜃。扈ゆスコ謨、 JavaScript驫<74></div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="迺コ螳<EFBFBD>郢<EFBFBD>オ濶ー蝓<EFBFBD>明轤ャ蟶エ"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">扈句ャェ邁ュ骰妹</a></li>
|
||||
<li class="navBarCell1Rev">扈ォサ</li>
|
||||
<li><a href="class-use/GidClientJson.html">豬」霍ィ謨、</a></li>
|
||||
<li><a href="package-tree.html">髀国</a></li>
|
||||
<li><a href="../../../deprecated-list.html">螳ク闌カ郢<EFBFBD>純カ</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">扈ア繹<EFBFBD>邏ゥ</a></li>
|
||||
<li><a href="../../../help-doc.html">逕ッ裵シ蟋ェ</a></li>
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/GidClientJson.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ゥ∫ォエ豸軟≧陲ォ</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientXml.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ャゥ遶エ豸軟≧陲ォ</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gid中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientXml.html" title="com.iker.gid中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClientJson.html" target="_top">螯怜利轣ヲ</a></li>
|
||||
<li><a href="GidClientJson.html" target="_top">髀<EFBFBD>患赶矩暑カ</a></li>
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClientJson.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClientJson.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../allclasses-noframe.html">骼オ竄ャ髀亥、瑚「ォ</a></li>
|
||||
<li><a href="../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -60,17 +60,17 @@
|
||||
</div>
|
||||
<div>
|
||||
<ul class="subNavList">
|
||||
<li>蟋貞<EFBFBD>都ヲ: </li>
|
||||
<li>螳灘アス郞<EFBFBD> | </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_summary">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_summary">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>迺<EFBFBD>クセ邊冗挑蜍ャ譫。: </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_detail">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_detail">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_top">
|
||||
@ -80,14 +80,14 @@
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<div class="header">
|
||||
<div class="subTitle">com.iker.gid</div>
|
||||
<h2 title="扈ォサ GidClientJson" class="title">扈ォサ GidClientJson</h2>
|
||||
<h2 title="类 GidClientJson" class="title">类 GidClientJson</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">com.iker.gid.GidClient</a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid中的类">com.iker.gid.GidClient</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.iker.gid.GidClientJson</li>
|
||||
@ -102,10 +102,10 @@
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public final class <span class="strong">GidClientJson</span>
|
||||
extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClient</a></pre>
|
||||
<div class="block">骼ク<EFBFBD> JSON 髀∫沿蠏<E6B2BF>渚辣守エ。髑セ蟲ー邱アGID髞帛イ<E5B89B>ォ「迹穂スキ螽<EFBDB7>世繖ヲ﨡晞盾迹ー邏。骰呎<E9AAB0>ァ邱ア骰樶<E9AAB0>遶エID髞帛アス蝙ッ髀亥カ<E4BAA5>ァ滄坤ィ
|
||||
雹<EFBFBD>其縲城巡訷壽ヮ髏「繖、邁。HTTP骰怜ソ夭<EFBFBD>迺∝摎譽カ髀ら族邏。</div>
|
||||
<dl><dt><span class="strong">豬」貊<EFBFBD>ぎ<EFBFBD>:</span></dt>
|
||||
extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid中的类">GidClient</a></pre>
|
||||
<div class="block">按 JSON 数据格式获得GID,若要使用此方式取得唯一ID,则服务器
|
||||
必须是启用了HTTP协议访问方式</div>
|
||||
<dl><dt><span class="strong">作者:</span></dt>
|
||||
<dd>zsx</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
@ -118,11 +118,11 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀句怯竄ャ迥イ讚貞ァ貞<EFBFBD>都ヲ</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="髀句怯竄ャ迥イ讚貞ァ貞<EFBFBD>都ヲ逅岑, 骰呈・<E59188><EFBFBD>暑蜍ッ竄ャ迥イ讚帝骨蟯σ帝夢<E5B89D>">
|
||||
<caption><span>髀句怯竄ャ迥イ讚<EFBFBD></span><span class="tabEnd"> </span></caption>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">髀句怯竄ャ迥イ讚帝骨蟯<EFBFBD><EFBFBD>髀ь</th>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../com/iker/gid/GidClientJson.html#GidClientJson(java.lang.String, int, java.lang.String)">GidClientJson</a></strong>(java.lang.String ip,
|
||||
@ -137,17 +137,17 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀りァ<EFBFBD>。カ蟋貞<EFBFBD>都ヲ</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="髀りァ<EFBFBD>。カ蟋貞<EFBFBD>都ヲ逅岑, 骰呈・<E59188><EFBFBD>盾隗<E79BBE>。カ骰懷イσ帝夢<E5B89D>">
|
||||
<caption><span>髀りァ<EFBFBD>。カ</span><span class="tabEnd"> </span></caption>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">髣<EFBFBD>┏逡セ扈暦ケ諡ー扈ォ隸イ轢キ</th>
|
||||
<th class="colLast" scope="col">髀りァ<EFBFBD>。カ骰懷イ<EFBFBD><EFBFBD>髀ь</th>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>long</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../com/iker/gid/GidClientJson.html#gidNext()">gidNext</a></strong>()</code>
|
||||
<div class="block">髑セ蟲ー邱ア豸灘ャゥ遶エ豸軟>謨ョ豸凪ぎID骰匚</div>
|
||||
<div class="block">获得下一个唯一ID号</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
@ -159,14 +159,14 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.iker.gid.GidClient">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>豬<EFBFBD>蠎」陲ォ郛<EFBFBD><EFBFBD>」咎勢蜍ャ譟溷ィ鴛 com.iker.gid.<a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClient</a></h3>
|
||||
<h3>从类继承的方法 com.iker.gid.<a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid中的类">GidClient</a></h3>
|
||||
<code><a href="../../../com/iker/gid/GidClient.html#setConnectTimeout(int)">setConnectTimeout</a>, <a href="../../../com/iker/gid/GidClient.html#setRdTimeout(int)">setRdTimeout</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>豬<EFBFBD>蠎」陲ォ郛<EFBFBD><EFBFBD>」咎勢蜍ャ譟溷ィ鴛 java.lang.Object</h3>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
@ -182,7 +182,7 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀句怯竄ャ迥イ讚堤仲<EFBFBD>セ邊冗挑蜍ャ譫。</h3>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="GidClientJson(java.lang.String, int, java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
@ -201,7 +201,7 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀りァ<EFBFBD>。カ迺<EFBFBD>クセ邊冗挑蜍ャ譫。</h3>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="gidNext()">
|
||||
<!-- -->
|
||||
</a>
|
||||
@ -209,12 +209,12 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
<li class="blockList">
|
||||
<h4>gidNext</h4>
|
||||
<pre>public long gidNext()</pre>
|
||||
<div class="block"><strong>豬<EFBFBD>蠎」陲ォ貔カ蠍<EFBFBD>泓髏ィ蜍ョ訒ゥ髀ь: <code><a href="../../../com/iker/gid/GidClient.html#gidNext()">GidClient</a></code></strong></div>
|
||||
<div class="block">髑セ蟲ー邱ア豸灘ャゥ遶エ豸軟>謨ョ豸凪ぎID骰匚</div>
|
||||
<div class="block"><strong>从类复制的说明: <code><a href="../../../com/iker/gid/GidClient.html#gidNext()">GidClient</a></code></strong></div>
|
||||
<div class="block">获得下一个唯一ID号</div>
|
||||
<dl>
|
||||
<dt><strong>骼ク蝗ァ逡セ髑ー<EFBFBD>:</strong></dt>
|
||||
<dd><code><a href="../../../com/iker/gid/GidClient.html#gidNext()">gidNext</a></code> 骰ヲ繖ァ陲ォ豸働 <code><a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClient</a></code></dd>
|
||||
<dt><span class="strong">譚ゥ譁ソ豢<EFBFBD>:</span></dt><dd>譚ゥ譁ソ豢夜込訷咏ォエ髏ィ<EFBFBD>64豬」蠍<EFBFBD>團髀∝クョ邏晄ソ。蛯帷♂譚ゥ譁ソ豢夜濠シ < 0 骰呈ャ偵<EFBFBD>サ蜩<EFBFBD>坏髢ソ<EFBFBD></dd></dl>
|
||||
<dt><strong>指定者:</strong></dt>
|
||||
<dd><code><a href="../../../com/iker/gid/GidClient.html#gidNext()">gidNext</a></code> 在类中 <code><a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid中的类">GidClient</a></code></dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>返回唯一的64位整数,如果返回值 < 0 则表示出错</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="main(java.lang.String[])">
|
||||
@ -236,30 +236,30 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="迺コ螳<EFBFBD>郢<EFBFBD>オ濶ー蝓<EFBFBD>明轤ャ蟶エ"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">扈句ャェ邁ュ骰妹</a></li>
|
||||
<li class="navBarCell1Rev">扈ォサ</li>
|
||||
<li><a href="class-use/GidClientJson.html">豬」霍ィ謨、</a></li>
|
||||
<li><a href="package-tree.html">髀国</a></li>
|
||||
<li><a href="../../../deprecated-list.html">螳ク闌カ郢<EFBFBD>純カ</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">扈ア繹<EFBFBD>邏ゥ</a></li>
|
||||
<li><a href="../../../help-doc.html">逕ッ裵シ蟋ェ</a></li>
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/GidClientJson.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ゥ∫ォエ豸軟≧陲ォ</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientXml.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ャゥ遶エ豸軟≧陲ォ</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gid中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientXml.html" title="com.iker.gid中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClientJson.html" target="_top">螯怜利轣ヲ</a></li>
|
||||
<li><a href="GidClientJson.html" target="_top">髀<EFBFBD>患赶矩暑カ</a></li>
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClientJson.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClientJson.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../allclasses-noframe.html">骼オ竄ャ髀亥、瑚「ォ</a></li>
|
||||
<li><a href="../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -275,17 +275,17 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
</div>
|
||||
<div>
|
||||
<ul class="subNavList">
|
||||
<li>蟋貞<EFBFBD>都ヲ: </li>
|
||||
<li>螳灘アス郞<EFBFBD> | </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_summary">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_summary">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>迺<EFBFBD>クセ邊冗挑蜍ャ譫。: </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_detail">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_detail">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
|
@ -1,4 +1,4 @@
|
||||
<EFBFBD>ソ<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
@ -16,35 +16,35 @@
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>骼ョ繖ァ谿大ィエ蠢夭搓骰」繖・蜃。扈ゆスコ謨、 JavaScript驫<74></div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="迺コ螳<EFBFBD>郢<EFBFBD>オ濶ー蝓<EFBFBD>明轤ャ蟶エ"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">扈句ャェ邁ュ骰妹</a></li>
|
||||
<li class="navBarCell1Rev">扈ォサ</li>
|
||||
<li><a href="class-use/GidClientXml.html">豬」霍ィ謨、</a></li>
|
||||
<li><a href="package-tree.html">髀国</a></li>
|
||||
<li><a href="../../../deprecated-list.html">螳ク闌カ郢<EFBFBD>純カ</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">扈ア繹<EFBFBD>邏ゥ</a></li>
|
||||
<li><a href="../../../help-doc.html">逕ッ裵シ蟋ェ</a></li>
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/GidClientXml.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../com/iker/gid/GidClientJson.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ゥ∫ォエ豸軟≧陲ォ</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidStatus.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ャゥ遶エ豸軟≧陲ォ</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientJson.html" title="com.iker.gid中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidStatus.html" title="com.iker.gid中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClientXml.html" target="_top">螯怜利轣ヲ</a></li>
|
||||
<li><a href="GidClientXml.html" target="_top">髀<EFBFBD>患赶矩暑カ</a></li>
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClientXml.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClientXml.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../allclasses-noframe.html">骼オ竄ャ髀亥、瑚「ォ</a></li>
|
||||
<li><a href="../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -60,17 +60,17 @@
|
||||
</div>
|
||||
<div>
|
||||
<ul class="subNavList">
|
||||
<li>蟋貞<EFBFBD>都ヲ: </li>
|
||||
<li>螳灘アス郞<EFBFBD> | </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_summary">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_summary">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>迺<EFBFBD>クセ邊冗挑蜍ャ譫。: </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_detail">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_detail">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_top">
|
||||
@ -80,14 +80,14 @@
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<div class="header">
|
||||
<div class="subTitle">com.iker.gid</div>
|
||||
<h2 title="扈ォサ GidClientXml" class="title">扈ォサ GidClientXml</h2>
|
||||
<h2 title="类 GidClientXml" class="title">类 GidClientXml</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">com.iker.gid.GidClient</a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid中的类">com.iker.gid.GidClient</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.iker.gid.GidClientXml</li>
|
||||
@ -102,10 +102,10 @@
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public final class <span class="strong">GidClientXml</span>
|
||||
extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClient</a></pre>
|
||||
<div class="block">骼ク蝪廴L髀咲<EFBFBD>邏。髑セ蟲ー邱アGID髀∫沿蠏<EFBFBD>縛蟯<EFBFBD>ォ「迹穂スキ螽<EFBFBD>世繖ヲ﨡晞盾迹ー邏。骰呎<EFBFBD>ァ邱ア骰樶<EFBFBD>遶エID髞帛アス蝙ッ髀亥カ<EFBFBD>ァ滄坤ィ
|
||||
雹<EFBFBD>其縲城巡訷壽ヮ髏「繖、邁。HTTP骰怜ソ夭<EFBFBD>迺∝摎譽カ髀ら族邏。</div>
|
||||
<dl><dt><span class="strong">豬」貊<EFBFBD>ぎ<EFBFBD>:</span></dt>
|
||||
extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid中的类">GidClient</a></pre>
|
||||
<div class="block">按XML格式获得GID数据,若要使用此方式取得唯一ID,则服务器
|
||||
必须是启用了HTTP协议访问方式</div>
|
||||
<dl><dt><span class="strong">作者:</span></dt>
|
||||
<dd>zsx</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
@ -118,11 +118,11 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀句怯竄ャ迥イ讚貞ァ貞<EFBFBD>都ヲ</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="髀句怯竄ャ迥イ讚貞ァ貞<EFBFBD>都ヲ逅岑, 骰呈・<E59188><EFBFBD>暑蜍ッ竄ャ迥イ讚帝骨蟯σ帝夢<E5B89D>">
|
||||
<caption><span>髀句怯竄ャ迥イ讚<EFBFBD></span><span class="tabEnd"> </span></caption>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">髀句怯竄ャ迥イ讚帝骨蟯<EFBFBD><EFBFBD>髀ь</th>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../com/iker/gid/GidClientXml.html#GidClientXml(java.lang.String, int, java.lang.String)">GidClientXml</a></strong>(java.lang.String ip,
|
||||
@ -137,17 +137,17 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀りァ<EFBFBD>。カ蟋貞<EFBFBD>都ヲ</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="髀りァ<EFBFBD>。カ蟋貞<EFBFBD>都ヲ逅岑, 骰呈・<E59188><EFBFBD>盾隗<E79BBE>。カ骰懷イσ帝夢<E5B89D>">
|
||||
<caption><span>髀りァ<EFBFBD>。カ</span><span class="tabEnd"> </span></caption>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">髣<EFBFBD>┏逡セ扈暦ケ諡ー扈ォ隸イ轢キ</th>
|
||||
<th class="colLast" scope="col">髀りァ<EFBFBD>。カ骰懷イ<EFBFBD><EFBFBD>髀ь</th>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>long</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../com/iker/gid/GidClientXml.html#gidNext()">gidNext</a></strong>()</code>
|
||||
<div class="block">髑セ蟲ー邱ア豸灘ャゥ遶エ豸軟>謨ョ豸凪ぎID骰匚</div>
|
||||
<div class="block">获得下一个唯一ID号</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
@ -159,14 +159,14 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.iker.gid.GidClient">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>豬<EFBFBD>蠎」陲ォ郛<EFBFBD><EFBFBD>」咎勢蜍ャ譟溷ィ鴛 com.iker.gid.<a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClient</a></h3>
|
||||
<h3>从类继承的方法 com.iker.gid.<a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid中的类">GidClient</a></h3>
|
||||
<code><a href="../../../com/iker/gid/GidClient.html#setConnectTimeout(int)">setConnectTimeout</a>, <a href="../../../com/iker/gid/GidClient.html#setRdTimeout(int)">setRdTimeout</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>豬<EFBFBD>蠎」陲ォ郛<EFBFBD><EFBFBD>」咎勢蜍ャ譟溷ィ鴛 java.lang.Object</h3>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
@ -182,7 +182,7 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀句怯竄ャ迥イ讚堤仲<EFBFBD>セ邊冗挑蜍ャ譫。</h3>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="GidClientXml(java.lang.String, int, java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
@ -201,7 +201,7 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀りァ<EFBFBD>。カ迺<EFBFBD>クセ邊冗挑蜍ャ譫。</h3>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="gidNext()">
|
||||
<!-- -->
|
||||
</a>
|
||||
@ -209,12 +209,12 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
<li class="blockList">
|
||||
<h4>gidNext</h4>
|
||||
<pre>public long gidNext()</pre>
|
||||
<div class="block"><strong>豬<EFBFBD>蠎」陲ォ貔カ蠍<EFBFBD>泓髏ィ蜍ョ訒ゥ髀ь: <code><a href="../../../com/iker/gid/GidClient.html#gidNext()">GidClient</a></code></strong></div>
|
||||
<div class="block">髑セ蟲ー邱ア豸灘ャゥ遶エ豸軟>謨ョ豸凪ぎID骰匚</div>
|
||||
<div class="block"><strong>从类复制的说明: <code><a href="../../../com/iker/gid/GidClient.html#gidNext()">GidClient</a></code></strong></div>
|
||||
<div class="block">获得下一个唯一ID号</div>
|
||||
<dl>
|
||||
<dt><strong>骼ク蝗ァ逡セ髑ー<EFBFBD>:</strong></dt>
|
||||
<dd><code><a href="../../../com/iker/gid/GidClient.html#gidNext()">gidNext</a></code> 骰ヲ繖ァ陲ォ豸働 <code><a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClient</a></code></dd>
|
||||
<dt><span class="strong">譚ゥ譁ソ豢<EFBFBD>:</span></dt><dd>譚ゥ譁ソ豢夜込訷咏ォエ髏ィ<EFBFBD>64豬」蠍<EFBFBD>團髀∝クョ邏晄ソ。蛯帷♂譚ゥ譁ソ豢夜濠シ < 0 骰呈ャ偵<EFBFBD>サ蜩<EFBFBD>坏髢ソ<EFBFBD></dd></dl>
|
||||
<dt><strong>指定者:</strong></dt>
|
||||
<dd><code><a href="../../../com/iker/gid/GidClient.html#gidNext()">gidNext</a></code> 在类中 <code><a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid中的类">GidClient</a></code></dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>返回唯一的64位整数,如果返回值 < 0 则表示出错</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="main(java.lang.String[])">
|
||||
@ -236,30 +236,30 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="迺コ螳<EFBFBD>郢<EFBFBD>オ濶ー蝓<EFBFBD>明轤ャ蟶エ"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">扈句ャェ邁ュ骰妹</a></li>
|
||||
<li class="navBarCell1Rev">扈ォサ</li>
|
||||
<li><a href="class-use/GidClientXml.html">豬」霍ィ謨、</a></li>
|
||||
<li><a href="package-tree.html">髀国</a></li>
|
||||
<li><a href="../../../deprecated-list.html">螳ク闌カ郢<EFBFBD>純カ</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">扈ア繹<EFBFBD>邏ゥ</a></li>
|
||||
<li><a href="../../../help-doc.html">逕ッ裵シ蟋ェ</a></li>
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/GidClientXml.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../com/iker/gid/GidClientJson.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ゥ∫ォエ豸軟≧陲ォ</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidStatus.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ャゥ遶エ豸軟≧陲ォ</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidClientJson.html" title="com.iker.gid中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../com/iker/gid/GidStatus.html" title="com.iker.gid中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClientXml.html" target="_top">螯怜利轣ヲ</a></li>
|
||||
<li><a href="GidClientXml.html" target="_top">髀<EFBFBD>患赶矩暑カ</a></li>
|
||||
<li><a href="../../../index.html?com/iker/gid/GidClientXml.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClientXml.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../allclasses-noframe.html">骼オ竄ャ髀亥、瑚「ォ</a></li>
|
||||
<li><a href="../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -275,17 +275,17 @@ extends <a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid涓
|
||||
</div>
|
||||
<div>
|
||||
<ul class="subNavList">
|
||||
<li>蟋貞<EFBFBD>都ヲ: </li>
|
||||
<li>螳灘アス郞<EFBFBD> | </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_summary">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_summary">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>迺<EFBFBD>クセ邊冗挑蜍ャ譫。: </li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD> | </li>
|
||||
<li><a href="#constructor_detail">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_detail">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
|
@ -1,4 +1,4 @@
|
||||
<EFBFBD>ソ<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
@ -16,35 +16,35 @@
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>骼ョ繖ァ谿大ィエ蠢夭搓骰」繖・蜃。扈ゆスコ謨、 JavaScript驫<74></div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="迺コ螳<EFBFBD>郢<EFBFBD>オ濶ー蝓<EFBFBD>明轤ャ蟶エ"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">扈句ャェ邁ュ骰妹</a></li>
|
||||
<li class="navBarCell1Rev">扈ォサ</li>
|
||||
<li><a href="class-use/GidStatus.html">豬」霍ィ謨、</a></li>
|
||||
<li><a href="package-tree.html">髀国</a></li>
|
||||
<li><a href="../../../deprecated-list.html">螳ク闌カ郢<EFBFBD>純カ</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">扈ア繹<EFBFBD>邏ゥ</a></li>
|
||||
<li><a href="../../../help-doc.html">逕ッ裵シ蟋ェ</a></li>
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/GidStatus.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../com/iker/gid/GidClientXml.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ゥ∫ォエ豸軟≧陲ォ</span></a></li>
|
||||
<li>豸灘ャゥ遶エ豸軟≧陲ォ</li>
|
||||
<li><a href="../../../com/iker/gid/GidClientXml.html" title="com.iker.gid中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li>下一个类</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../index.html?com/iker/gid/GidStatus.html" target="_top">螯怜利轣ヲ</a></li>
|
||||
<li><a href="GidStatus.html" target="_top">髀<EFBFBD>患赶矩暑カ</a></li>
|
||||
<li><a href="../../../index.html?com/iker/gid/GidStatus.html" target="_top">框架</a></li>
|
||||
<li><a href="GidStatus.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../allclasses-noframe.html">骼オ竄ャ髀亥、瑚「ォ</a></li>
|
||||
<li><a href="../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -60,17 +60,17 @@
|
||||
</div>
|
||||
<div>
|
||||
<ul class="subNavList">
|
||||
<li>蟋貞<EFBFBD>都ヲ: </li>
|
||||
<li>螳灘アス郞<EFBFBD> | </li>
|
||||
<li><a href="#field_summary">轢帶・<EFBFBD><EFBFBD></a> | </li>
|
||||
<li><a href="#constructor_summary">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_summary">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li><a href="#field_summary">字段</a> | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>迺<EFBFBD>クセ邊冗挑蜍ャ譫。: </li>
|
||||
<li><a href="#field_detail">轢帶・<EFBFBD><EFBFBD></a> | </li>
|
||||
<li><a href="#constructor_detail">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_detail">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>详细资料: </li>
|
||||
<li><a href="#field_detail">字段</a> | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_top">
|
||||
@ -80,7 +80,7 @@
|
||||
<!-- ======== START OF CLASS DATA ======== -->
|
||||
<div class="header">
|
||||
<div class="subTitle">com.iker.gid</div>
|
||||
<h2 title="扈ォサ GidStatus" class="title">扈ォサ GidStatus</h2>
|
||||
<h2 title="类 GidStatus" class="title">类 GidStatus</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
@ -98,9 +98,9 @@
|
||||
<br>
|
||||
<pre>public final class <span class="strong">GidStatus</span>
|
||||
extends java.lang.Object</pre>
|
||||
<dl><dt><span class="strong">豬」貊<EFBFBD>ぎ<EFBFBD>:</span></dt>
|
||||
<dl><dt><span class="strong">作者:</span></dt>
|
||||
<dd>zsx
|
||||
迺<EFBFBD>Ι陲ォ豸捺<EFBFBD>都ヲ轢ケ豌ォ邂滓オ懷長ID髏ィ蜍ッ謨顔仲訷壼スソ豬<EFBFBD>繝・蠑キ轣丞李謨顔仲訷壼スソ譚樶α雍溽帶・<EFBFBD>メ豸灘初蠑ソ譚ゥ鬚∽ソ企鹿訷懈ョ鷹告蜻ュ裵<EFBFBD></dd></dl>
|
||||
该类主要定义了GID的错误号以及将错误号转为字符串描述信息的内容</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
@ -112,12 +112,12 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList"><a name="field_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>轢帶・<EFBFBD><EFBFBD>蟋貞<EFBFBD>都ヲ</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="轢帶・<EFBFBD><EFBFBD>蟋貞<EFBFBD>都ヲ逅岑, 骰呈・<E59188><EFBFBD>帶・<E5B8B6><EFBDA5>骰懷イσ帝夢<E5B89D>">
|
||||
<caption><span>轢帶・<EFBFBD><EFBFBD></span><span class="tabEnd"> </span></caption>
|
||||
<h3>字段概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="字段概要表, 列表字段和解释">
|
||||
<caption><span>字段</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">髣<EFBFBD>┏逡セ扈暦ケ諡ー扈ォ隸イ轢キ</th>
|
||||
<th class="colLast" scope="col">轢帶・<EFBFBD><EFBFBD>骰懷イ<EFBFBD><EFBFBD>髀ь</th>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">字段和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>static int</code></td>
|
||||
@ -163,11 +163,11 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀句怯竄ャ迥イ讚貞ァ貞<EFBFBD>都ヲ</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="髀句怯竄ャ迥イ讚貞ァ貞<EFBFBD>都ヲ逅岑, 骰呈・<E59188><EFBFBD>暑蜍ッ竄ャ迥イ讚帝骨蟯σ帝夢<E5B89D>">
|
||||
<caption><span>髀句怯竄ャ迥イ讚<EFBFBD></span><span class="tabEnd"> </span></caption>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">髀句怯竄ャ迥イ讚帝骨蟯<EFBFBD><EFBFBD>髀ь</th>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../com/iker/gid/GidStatus.html#GidStatus()">GidStatus</a></strong>()</code> </td>
|
||||
@ -180,17 +180,17 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀りァ<EFBFBD>。カ蟋貞<EFBFBD>都ヲ</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="髀りァ<EFBFBD>。カ蟋貞<EFBFBD>都ヲ逅岑, 骰呈・<E59188><EFBFBD>盾隗<E79BBE>。カ骰懷イσ帝夢<E5B89D>">
|
||||
<caption><span>髀りァ<EFBFBD>。カ</span><span class="tabEnd"> </span></caption>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">髣<EFBFBD>┏逡セ扈暦ケ諡ー扈ォ隸イ轢キ</th>
|
||||
<th class="colLast" scope="col">髀りァ<EFBFBD>。カ骰懷イ<EFBFBD><EFBFBD>髀ь</th>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>static java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../com/iker/gid/GidStatus.html#toString(int)">toString</a></strong>(int gidStatus)</code>
|
||||
<div class="block">轣丞李謨顔仲訷壼スソ譚樶α雍溽帶・<EFBFBD>メ豸灘初蠑ソ譚ゥ鬚∽ソ企鹿ッ</div>
|
||||
<div class="block">将错误号转为字符串描述信息</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@ -198,7 +198,7 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>豬<EFBFBD>蠎」陲ォ郛<EFBFBD><EFBFBD>」咎勢蜍ャ譟溷ィ鴛 java.lang.Object</h3>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
@ -214,7 +214,7 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList"><a name="field_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>轢帶・<EFBFBD><EFBFBD>迺<EFBFBD>クセ邊冗挑蜍ャ譫。</h3>
|
||||
<h3>字段详细资料</h3>
|
||||
<a name="gidOk">
|
||||
<!-- -->
|
||||
</a>
|
||||
@ -222,7 +222,7 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList">
|
||||
<h4>gidOk</h4>
|
||||
<pre>public static final int gidOk</pre>
|
||||
<dl><dt><span class="strong">骰呻ケ<EFBFBD><EFBFBD>骰吝<EFBFBD>讒<EFBFBD>:</span></dt><dd><a href="../../../constant-values.html#com.iker.gid.GidStatus.gidOk">逕ッ謳∝匱轢帶・<EFBFBD><EFBFBD>骰款</a></dd></dl>
|
||||
<dl><dt><span class="strong">另请参阅:</span></dt><dd><a href="../../../constant-values.html#com.iker.gid.GidStatus.gidOk">常量字段值</a></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="gidErrInit">
|
||||
@ -232,7 +232,7 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList">
|
||||
<h4>gidErrInit</h4>
|
||||
<pre>public static final int gidErrInit</pre>
|
||||
<dl><dt><span class="strong">骰呻ケ<EFBFBD><EFBFBD>骰吝<EFBFBD>讒<EFBFBD>:</span></dt><dd><a href="../../../constant-values.html#com.iker.gid.GidStatus.gidErrInit">逕ッ謳∝匱轢帶・<EFBFBD><EFBFBD>骰款</a></dd></dl>
|
||||
<dl><dt><span class="strong">另请参阅:</span></dt><dd><a href="../../../constant-values.html#com.iker.gid.GidStatus.gidErrInit">常量字段值</a></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="gidErrConn">
|
||||
@ -242,7 +242,7 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList">
|
||||
<h4>gidErrConn</h4>
|
||||
<pre>public static final int gidErrConn</pre>
|
||||
<dl><dt><span class="strong">骰呻ケ<EFBFBD><EFBFBD>骰吝<EFBFBD>讒<EFBFBD>:</span></dt><dd><a href="../../../constant-values.html#com.iker.gid.GidStatus.gidErrConn">逕ッ謳∝匱轢帶・<EFBFBD><EFBFBD>骰款</a></dd></dl>
|
||||
<dl><dt><span class="strong">另请参阅:</span></dt><dd><a href="../../../constant-values.html#com.iker.gid.GidStatus.gidErrConn">常量字段值</a></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="gidErrIo">
|
||||
@ -252,7 +252,7 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList">
|
||||
<h4>gidErrIo</h4>
|
||||
<pre>public static final int gidErrIo</pre>
|
||||
<dl><dt><span class="strong">骰呻ケ<EFBFBD><EFBFBD>骰吝<EFBFBD>讒<EFBFBD>:</span></dt><dd><a href="../../../constant-values.html#com.iker.gid.GidStatus.gidErrIo">逕ッ謳∝匱轢帶・<EFBFBD><EFBFBD>骰款</a></dd></dl>
|
||||
<dl><dt><span class="strong">另请参阅:</span></dt><dd><a href="../../../constant-values.html#com.iker.gid.GidStatus.gidErrIo">常量字段值</a></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="gidErrProto">
|
||||
@ -262,7 +262,7 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList">
|
||||
<h4>gidErrProto</h4>
|
||||
<pre>public static final int gidErrProto</pre>
|
||||
<dl><dt><span class="strong">骰呻ケ<EFBFBD><EFBFBD>骰吝<EFBFBD>讒<EFBFBD>:</span></dt><dd><a href="../../../constant-values.html#com.iker.gid.GidStatus.gidErrProto">逕ッ謳∝匱轢帶・<EFBFBD><EFBFBD>骰款</a></dd></dl>
|
||||
<dl><dt><span class="strong">另请参阅:</span></dt><dd><a href="../../../constant-values.html#com.iker.gid.GidStatus.gidErrProto">常量字段值</a></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="gidErrServer">
|
||||
@ -272,7 +272,7 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList">
|
||||
<h4>gidErrServer</h4>
|
||||
<pre>public static final int gidErrServer</pre>
|
||||
<dl><dt><span class="strong">骰呻ケ<EFBFBD><EFBFBD>骰吝<EFBFBD>讒<EFBFBD>:</span></dt><dd><a href="../../../constant-values.html#com.iker.gid.GidStatus.gidErrServer">逕ッ謳∝匱轢帶・<EFBFBD><EFBFBD>骰款</a></dd></dl>
|
||||
<dl><dt><span class="strong">另请参阅:</span></dt><dd><a href="../../../constant-values.html#com.iker.gid.GidStatus.gidErrServer">常量字段值</a></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="gidErrSid">
|
||||
@ -282,7 +282,7 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList">
|
||||
<h4>gidErrSid</h4>
|
||||
<pre>public static final int gidErrSid</pre>
|
||||
<dl><dt><span class="strong">骰呻ケ<EFBFBD><EFBFBD>骰吝<EFBFBD>讒<EFBFBD>:</span></dt><dd><a href="../../../constant-values.html#com.iker.gid.GidStatus.gidErrSid">逕ッ謳∝匱轢帶・<EFBFBD><EFBFBD>骰款</a></dd></dl>
|
||||
<dl><dt><span class="strong">另请参阅:</span></dt><dd><a href="../../../constant-values.html#com.iker.gid.GidStatus.gidErrSid">常量字段值</a></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="gidErrOverride">
|
||||
@ -292,7 +292,7 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList">
|
||||
<h4>gidErrOverride</h4>
|
||||
<pre>public static final int gidErrOverride</pre>
|
||||
<dl><dt><span class="strong">骰呻ケ<EFBFBD><EFBFBD>骰吝<EFBFBD>讒<EFBFBD>:</span></dt><dd><a href="../../../constant-values.html#com.iker.gid.GidStatus.gidErrOverride">逕ッ謳∝匱轢帶・<EFBFBD><EFBFBD>骰款</a></dd></dl>
|
||||
<dl><dt><span class="strong">另请参阅:</span></dt><dd><a href="../../../constant-values.html#com.iker.gid.GidStatus.gidErrOverride">常量字段值</a></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="gidErrSave">
|
||||
@ -302,7 +302,7 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList">
|
||||
<h4>gidErrSave</h4>
|
||||
<pre>public static final int gidErrSave</pre>
|
||||
<dl><dt><span class="strong">骰呻ケ<EFBFBD><EFBFBD>骰吝<EFBFBD>讒<EFBFBD>:</span></dt><dd><a href="../../../constant-values.html#com.iker.gid.GidStatus.gidErrSave">逕ッ謳∝匱轢帶・<EFBFBD><EFBFBD>骰款</a></dd></dl>
|
||||
<dl><dt><span class="strong">另请参阅:</span></dt><dd><a href="../../../constant-values.html#com.iker.gid.GidStatus.gidErrSave">常量字段值</a></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
@ -312,7 +312,7 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀句怯竄ャ迥イ讚堤仲<EFBFBD>セ邊冗挑蜍ャ譫。</h3>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="GidStatus()">
|
||||
<!-- -->
|
||||
</a>
|
||||
@ -329,7 +329,7 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>髀りァ<EFBFBD>。カ迺<EFBFBD>クセ邊冗挑蜍ャ譫。</h3>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="toString(int)">
|
||||
<!-- -->
|
||||
</a>
|
||||
@ -337,9 +337,9 @@ extends java.lang.Object</pre>
|
||||
<li class="blockList">
|
||||
<h4>toString</h4>
|
||||
<pre>public static java.lang.String toString(int gidStatus)</pre>
|
||||
<div class="block">轣丞李謨顔仲訷壼スソ譚樶α雍溽帶・<EFBFBD>メ豸灘初蠑ソ譚ゥ鬚∽ソ企鹿ッ</div>
|
||||
<dl><dt><span class="strong">骰吝<EFBFBD>證<EFBFBD>:</span></dt><dd><code>gidStatus</code> - </dd>
|
||||
<dt><span class="strong">譚ゥ譁ソ豢<EFBFBD>:</span></dt><dd>String</dd></dl>
|
||||
<div class="block">将错误号转为字符串描述信息</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>gidStatus</code> - </dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>String</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
@ -352,30 +352,30 @@ extends java.lang.Object</pre>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="迺コ螳<EFBFBD>郢<EFBFBD>オ濶ー蝓<EFBFBD>明轤ャ蟶エ"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">扈句ャェ邁ュ骰妹</a></li>
|
||||
<li class="navBarCell1Rev">扈ォサ</li>
|
||||
<li><a href="class-use/GidStatus.html">豬」霍ィ謨、</a></li>
|
||||
<li><a href="package-tree.html">髀国</a></li>
|
||||
<li><a href="../../../deprecated-list.html">螳ク闌カ郢<EFBFBD>純カ</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">扈ア繹<EFBFBD>邏ゥ</a></li>
|
||||
<li><a href="../../../help-doc.html">逕ッ裵シ蟋ェ</a></li>
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/GidStatus.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../com/iker/gid/GidClientXml.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ"><span class="strong">豸灘ゥ∫ォエ豸軟≧陲ォ</span></a></li>
|
||||
<li>豸灘ャゥ遶エ豸軟≧陲ォ</li>
|
||||
<li><a href="../../../com/iker/gid/GidClientXml.html" title="com.iker.gid中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li>下一个类</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../index.html?com/iker/gid/GidStatus.html" target="_top">螯怜利轣ヲ</a></li>
|
||||
<li><a href="GidStatus.html" target="_top">髀<EFBFBD>患赶矩暑カ</a></li>
|
||||
<li><a href="../../../index.html?com/iker/gid/GidStatus.html" target="_top">框架</a></li>
|
||||
<li><a href="GidStatus.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../allclasses-noframe.html">骼オ竄ャ髀亥、瑚「ォ</a></li>
|
||||
<li><a href="../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -391,17 +391,17 @@ extends java.lang.Object</pre>
|
||||
</div>
|
||||
<div>
|
||||
<ul class="subNavList">
|
||||
<li>蟋貞<EFBFBD>都ヲ: </li>
|
||||
<li>螳灘アス郞<EFBFBD> | </li>
|
||||
<li><a href="#field_summary">轢帶・<EFBFBD><EFBFBD></a> | </li>
|
||||
<li><a href="#constructor_summary">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_summary">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li><a href="#field_summary">字段</a> | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>迺<EFBFBD>クセ邊冗挑蜍ャ譫。: </li>
|
||||
<li><a href="#field_detail">轢帶・<EFBFBD><EFBFBD></a> | </li>
|
||||
<li><a href="#constructor_detail">髀句怯竄ャ迥イ讚<EFBFBD></a> | </li>
|
||||
<li><a href="#method_detail">髀りァ<EFBFBD>。カ</a></li>
|
||||
<li>详细资料: </li>
|
||||
<li><a href="#field_detail">字段</a> | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
|
@ -1,50 +1,50 @@
|
||||
<EFBFBD>ソ<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0) on Fri Dec 02 10:32:23 CST 2011 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
|
||||
<title>扈ォサ com.iker.gid.GidClient髏ィ蜍ェ螽<EFBDAA>世ィ</title>
|
||||
<title>类 com.iker.gid.GidClient的使用</title>
|
||||
<meta name="date" content="2011-12-02">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript"><!--
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="扈ォサ com.iker.gid.GidClient髏ィ蜍ェ螽<EFBDAA>世ィ";
|
||||
parent.document.title="类 com.iker.gid.GidClient的使用";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>骼ョ繖ァ谿大ィエ蠢夭搓骰」繖・蜃。扈ゆスコ謨、 JavaScript驫<74></div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="迺コ螳<EFBFBD>郢<EFBFBD>オ濶ー蝓<EFBFBD>明轤ャ蟶エ"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">扈句ャェ邁ュ骰妹</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClient.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">扈ォサ</a></li>
|
||||
<li class="navBarCell1Rev">豬」霍ィ謨、</li>
|
||||
<li><a href="../package-tree.html">髀国</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">螳ク闌カ郢<EFBFBD>純カ</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">扈ア繹<EFBFBD>邏ゥ</a></li>
|
||||
<li><a href="../../../../help-doc.html">逕ッ裵シ蟋ェ</a></li>
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClient.html" title="com.iker.gid中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>豸灘ゥ∫ォエ豸頭</li>
|
||||
<li>豸灘ャゥ遶エ豸頭</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClient.html" target="_top">螯怜利轣ヲ</a></li>
|
||||
<li><a href="GidClient.html" target="_top">髀<EFBFBD>患赶矩暑カ</a></li>
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClient.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClient.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">骼オ竄ャ髀亥、瑚「ォ</a></li>
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -63,7 +63,7 @@
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h2 title="扈ォサ com.iker.gid.GidClient 髏ィ蜍ェ螽<EFBDAA>世ィ" class="title">扈ォサ com.iker.gid.GidClient<br>髏ィ蜍ェ螽<EFBFBD>世ィ</h2>
|
||||
<h2 title="类 com.iker.gid.GidClient 的使用" class="title">类 com.iker.gid.GidClient<br>的使用</h2>
|
||||
</div>
|
||||
<div class="classUseContainer">
|
||||
<ul class="blockList">
|
||||
@ -72,33 +72,33 @@
|
||||
<li class="blockList"><a name="com.iker.gid">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3><a href="../../../../com/iker/gid/package-summary.html">com.iker.gid</a>豸働<a href="../../../../com/iker/gid/GidClient.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClient</a>髏ィ蜍ェ螽<EFBFBD>世ィ</h3>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="豬」霍ィ謨、逅岑, 骰呈・<E59188><EFBFBD>帶┛陲ォ骰懷イσ帝夢<E5B89D>">
|
||||
<caption><span><a href="../../../../com/iker/gid/package-summary.html">com.iker.gid</a>豸働<a href="../../../../com/iker/gid/GidClient.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClient</a>髏ィ蜍ォ逑咏サォサ</span><span class="tabEnd"> </span></caption>
|
||||
<h3><a href="../../../../com/iker/gid/package-summary.html">com.iker.gid</a>中<a href="../../../../com/iker/gid/GidClient.html" title="com.iker.gid中的类">GidClient</a>的使用</h3>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表子类和解释">
|
||||
<caption><span><a href="../../../../com/iker/gid/package-summary.html">com.iker.gid</a>中<a href="../../../../com/iker/gid/GidClient.html" title="com.iker.gid中的类">GidClient</a>的子类</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">髣<EFBFBD>┏逡セ扈暦ケ諡ー扈ォ隸イ轢キ</th>
|
||||
<th class="colLast" scope="col">扈ォ隸イ諡ー迺<EFBFBD>ュ俶ァ<EFBFBD></th>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">类和说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>class </code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClientCmdLine</a></strong></code>
|
||||
<div class="block">骰帶<EFBFBD>謚、逅帛アセ譟溷ッョ蠢守イ<EFBFBD>GID髀亥カ<EFBFBD>ァ滄坤繖・蠖<EFBFBD>ッー讌謨ョ豸凪ぎID骰吝<EFBFBD>邏晞巡訷壽メ謳エ譌<EFBFBD>∵豬」霍ィ謨、迺<EFBFBD>Θ譟溷ッョ蠢灘ス<EFBFBD>ッー讌謨ョ豸凪ぎID骰吝<EFBFBD>邏<EFBFBD>
|
||||
謳エ譌<EFBFBD>∵骰呎<EFBFBD>ァ蝟<EFBFBD>オ懷コ「貉<EFBFBD>鵠窶ウ讚帝勢蜍ッ蜴、郛<EFBFBD>〝竄ャ螟舌<EFBFBD></div>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid中的类">GidClientCmdLine</a></strong></code>
|
||||
<div class="block">命令行方式从GID服务器取得唯一ID号,是否应该使用该方式取得唯一ID号,
|
||||
应该取决于服务器的配置选项</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>class </code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/iker/gid/GidClientJson.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClientJson</a></strong></code>
|
||||
<div class="block">骼ク<EFBFBD> JSON 髀∫沿蠏<E6B2BF>渚辣守エ。髑セ蟲ー邱アGID髞帛イ<E5B89B>ォ「迹穂スキ螽<EFBDB7>世繖ヲ﨡晞盾迹ー邏。骰呎<E9AAB0>ァ邱ア骰樶<E9AAB0>遶エID髞帛アス蝙ッ髀亥カ<E4BAA5>ァ滄坤ィ
|
||||
雹<EFBFBD>其縲城巡訷壽ヮ髏「繖、邁。HTTP骰怜ソ夭<EFBFBD>迺∝摎譽カ髀ら族邏。</div>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/iker/gid/GidClientJson.html" title="com.iker.gid中的类">GidClientJson</a></strong></code>
|
||||
<div class="block">按 JSON 数据格式获得GID,若要使用此方式取得唯一ID,则服务器
|
||||
必须是启用了HTTP协议访问方式</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>class </code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/iker/gid/GidClientXml.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClientXml</a></strong></code>
|
||||
<div class="block">骼ク蝪廴L髀咲<EFBFBD>邏。髑セ蟲ー邱アGID髀∫沿蠏<EFBFBD>縛蟯<EFBFBD>ォ「迹穂スキ螽<EFBFBD>世繖ヲ﨡晞盾迹ー邏。骰呎<EFBFBD>ァ邱ア骰樶<EFBFBD>遶エID髞帛アス蝙ッ髀亥カ<EFBFBD>ァ滄坤ィ
|
||||
雹<EFBFBD>其縲城巡訷壽ヮ髏「繖、邁。HTTP骰怜ソ夭<EFBFBD>迺∝摎譽カ髀ら族邏。</div>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/iker/gid/GidClientXml.html" title="com.iker.gid中的类">GidClientXml</a></strong></code>
|
||||
<div class="block">按XML格式获得GID数据,若要使用此方式取得唯一ID,则服务器
|
||||
必须是启用了HTTP协议访问方式</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
@ -111,30 +111,30 @@
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="迺コ螳<EFBFBD>郢<EFBFBD>オ濶ー蝓<EFBFBD>明轤ャ蟶エ"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">扈句ャェ邁ュ骰妹</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClient.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">扈ォサ</a></li>
|
||||
<li class="navBarCell1Rev">豬」霍ィ謨、</li>
|
||||
<li><a href="../package-tree.html">髀国</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">螳ク闌カ郢<EFBFBD>純カ</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">扈ア繹<EFBFBD>邏ゥ</a></li>
|
||||
<li><a href="../../../../help-doc.html">逕ッ裵シ蟋ェ</a></li>
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClient.html" title="com.iker.gid中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>豸灘ゥ∫ォエ豸頭</li>
|
||||
<li>豸灘ャゥ遶エ豸頭</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClient.html" target="_top">螯怜利轣ヲ</a></li>
|
||||
<li><a href="GidClient.html" target="_top">髀<EFBFBD>患赶矩暑カ</a></li>
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClient.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClient.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">骼オ竄ャ髀亥、瑚「ォ</a></li>
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
|
@ -1,50 +1,50 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0) on Fri Dec 02 10:32:23 CST 2011 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
|
||||
<title>绫» com.iker.gid.GidClientCmdLine.NameValueé<65>¨å‹ªå¨‡é<E280A1>¢¨</title>
|
||||
<title>类 com.iker.gid.GidClientCmdLine.NameValue的使用</title>
|
||||
<meta name="date" content="2011-12-02">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript"><!--
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="绫» com.iker.gid.GidClientCmdLine.NameValueé<65>¨å‹ªå¨‡é<E280A1>¢¨";
|
||||
parent.document.title="类 com.iker.gid.GidClientCmdLine.NameValue的使用";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>鎮ㄧ殑娴忚î<EFBFBD><EFBFBD>é<EFBFBD>£ã„¥å‡¡ç»‚佺敤 JavaScript銆‚</div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClientCmdLine.NameValue.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">绫»</a></li>
|
||||
<li class="navBarCell1Rev">浣跨敤</li>
|
||||
<li><a href="../package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">绱㈠紩</a></li>
|
||||
<li><a href="../../../../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClientCmdLine.NameValue.html" title="com.iker.gid中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓å©<EFBFBD>竴涓ª</li>
|
||||
<li>涓嬩竴涓ª</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClientCmdLine.NameValue.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="GidClientCmdLine.NameValue.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClientCmdLine.NameValue.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClientCmdLine.NameValue.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -63,36 +63,36 @@
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h2 title="绫» com.iker.gid.GidClientCmdLine.NameValue é<>¨å‹ªå¨‡é<E280A1>¢¨" class="title">绫» com.iker.gid.GidClientCmdLine.NameValue<br>é<EFBFBD>¨å‹ªå¨‡é<EFBFBD>¢¨</h2>
|
||||
<h2 title="类 com.iker.gid.GidClientCmdLine.NameValue 的使用" class="title">类 com.iker.gid.GidClientCmdLine.NameValue<br>的使用</h2>
|
||||
</div>
|
||||
<div class="classUseContainer">娌℃æ¹<EFBFBD>com.iker.gid.GidClientCmdLine.NameValueé<65>¨å‹æ•¤å¨‰•</div>
|
||||
<div class="classUseContainer">没有com.iker.gid.GidClientCmdLine.NameValue的用法</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClientCmdLine.NameValue.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">绫»</a></li>
|
||||
<li class="navBarCell1Rev">浣跨敤</li>
|
||||
<li><a href="../package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">绱㈠紩</a></li>
|
||||
<li><a href="../../../../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClientCmdLine.NameValue.html" title="com.iker.gid中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓å©<EFBFBD>竴涓ª</li>
|
||||
<li>涓嬩竴涓ª</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClientCmdLine.NameValue.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="GidClientCmdLine.NameValue.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClientCmdLine.NameValue.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClientCmdLine.NameValue.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
|
@ -1,50 +1,50 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0) on Fri Dec 02 10:32:23 CST 2011 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
|
||||
<title>绫» com.iker.gid.GidClientCmdLine.Tokensé<73>¨å‹ªå¨‡é<E280A1>¢¨</title>
|
||||
<title>类 com.iker.gid.GidClientCmdLine.Tokens的使用</title>
|
||||
<meta name="date" content="2011-12-02">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript"><!--
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="绫» com.iker.gid.GidClientCmdLine.Tokensé<73>¨å‹ªå¨‡é<E280A1>¢¨";
|
||||
parent.document.title="类 com.iker.gid.GidClientCmdLine.Tokens的使用";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>鎮ㄧ殑娴忚î<EFBFBD><EFBFBD>é<EFBFBD>£ã„¥å‡¡ç»‚佺敤 JavaScript銆‚</div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">绫»</a></li>
|
||||
<li class="navBarCell1Rev">浣跨敤</li>
|
||||
<li><a href="../package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">绱㈠紩</a></li>
|
||||
<li><a href="../../../../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gid中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓å©<EFBFBD>竴涓ª</li>
|
||||
<li>涓嬩竴涓ª</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClientCmdLine.Tokens.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="GidClientCmdLine.Tokens.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClientCmdLine.Tokens.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClientCmdLine.Tokens.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -63,36 +63,36 @@
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h2 title="绫» com.iker.gid.GidClientCmdLine.Tokens é<>¨å‹ªå¨‡é<E280A1>¢¨" class="title">绫» com.iker.gid.GidClientCmdLine.Tokens<br>é<EFBFBD>¨å‹ªå¨‡é<EFBFBD>¢¨</h2>
|
||||
<h2 title="类 com.iker.gid.GidClientCmdLine.Tokens 的使用" class="title">类 com.iker.gid.GidClientCmdLine.Tokens<br>的使用</h2>
|
||||
</div>
|
||||
<div class="classUseContainer">娌℃æ¹<EFBFBD>com.iker.gid.GidClientCmdLine.Tokensé<73>¨å‹æ•¤å¨‰•</div>
|
||||
<div class="classUseContainer">没有com.iker.gid.GidClientCmdLine.Tokens的用法</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">绫»</a></li>
|
||||
<li class="navBarCell1Rev">浣跨敤</li>
|
||||
<li><a href="../package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">绱㈠紩</a></li>
|
||||
<li><a href="../../../../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gid中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓å©<EFBFBD>竴涓ª</li>
|
||||
<li>涓嬩竴涓ª</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClientCmdLine.Tokens.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="GidClientCmdLine.Tokens.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClientCmdLine.Tokens.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClientCmdLine.Tokens.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
|
@ -1,50 +1,50 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0) on Fri Dec 02 10:32:23 CST 2011 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
|
||||
<title>绫» com.iker.gid.GidClientCmdLineé<65>¨å‹ªå¨‡é<E280A1>¢¨</title>
|
||||
<title>类 com.iker.gid.GidClientCmdLine的使用</title>
|
||||
<meta name="date" content="2011-12-02">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript"><!--
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="绫» com.iker.gid.GidClientCmdLineé<65>¨å‹ªå¨‡é<E280A1>¢¨";
|
||||
parent.document.title="类 com.iker.gid.GidClientCmdLine的使用";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>鎮ㄧ殑娴忚î<EFBFBD><EFBFBD>é<EFBFBD>£ã„¥å‡¡ç»‚佺敤 JavaScript銆‚</div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">绫»</a></li>
|
||||
<li class="navBarCell1Rev">浣跨敤</li>
|
||||
<li><a href="../package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">绱㈠紩</a></li>
|
||||
<li><a href="../../../../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓å©<EFBFBD>竴涓ª</li>
|
||||
<li>涓嬩竴涓ª</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClientCmdLine.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="GidClientCmdLine.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClientCmdLine.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClientCmdLine.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -63,36 +63,36 @@
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h2 title="绫» com.iker.gid.GidClientCmdLine é<>¨å‹ªå¨‡é<E280A1>¢¨" class="title">绫» com.iker.gid.GidClientCmdLine<br>é<EFBFBD>¨å‹ªå¨‡é<EFBFBD>¢¨</h2>
|
||||
<h2 title="类 com.iker.gid.GidClientCmdLine 的使用" class="title">类 com.iker.gid.GidClientCmdLine<br>的使用</h2>
|
||||
</div>
|
||||
<div class="classUseContainer">娌℃æ¹<EFBFBD>com.iker.gid.GidClientCmdLineé<65>¨å‹æ•¤å¨‰•</div>
|
||||
<div class="classUseContainer">没有com.iker.gid.GidClientCmdLine的用法</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">绫»</a></li>
|
||||
<li class="navBarCell1Rev">浣跨敤</li>
|
||||
<li><a href="../package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">绱㈠紩</a></li>
|
||||
<li><a href="../../../../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓å©<EFBFBD>竴涓ª</li>
|
||||
<li>涓嬩竴涓ª</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClientCmdLine.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="GidClientCmdLine.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClientCmdLine.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClientCmdLine.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
|
@ -1,50 +1,50 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0) on Fri Dec 02 10:32:23 CST 2011 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
|
||||
<title>绫» com.iker.gid.GidClientJsoné<6E>¨å‹ªå¨‡é<E280A1>¢¨</title>
|
||||
<title>类 com.iker.gid.GidClientJson的使用</title>
|
||||
<meta name="date" content="2011-12-02">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript"><!--
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="绫» com.iker.gid.GidClientJsoné<6E>¨å‹ªå¨‡é<E280A1>¢¨";
|
||||
parent.document.title="类 com.iker.gid.GidClientJson的使用";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>鎮ㄧ殑娴忚î<EFBFBD><EFBFBD>é<EFBFBD>£ã„¥å‡¡ç»‚佺敤 JavaScript銆‚</div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClientJson.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">绫»</a></li>
|
||||
<li class="navBarCell1Rev">浣跨敤</li>
|
||||
<li><a href="../package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">绱㈠紩</a></li>
|
||||
<li><a href="../../../../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClientJson.html" title="com.iker.gid中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓å©<EFBFBD>竴涓ª</li>
|
||||
<li>涓嬩竴涓ª</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClientJson.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="GidClientJson.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClientJson.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClientJson.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -63,36 +63,36 @@
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h2 title="绫» com.iker.gid.GidClientJson é<>¨å‹ªå¨‡é<E280A1>¢¨" class="title">绫» com.iker.gid.GidClientJson<br>é<EFBFBD>¨å‹ªå¨‡é<EFBFBD>¢¨</h2>
|
||||
<h2 title="类 com.iker.gid.GidClientJson 的使用" class="title">类 com.iker.gid.GidClientJson<br>的使用</h2>
|
||||
</div>
|
||||
<div class="classUseContainer">娌℃æ¹<EFBFBD>com.iker.gid.GidClientJsoné<6E>¨å‹æ•¤å¨‰•</div>
|
||||
<div class="classUseContainer">没有com.iker.gid.GidClientJson的用法</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClientJson.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">绫»</a></li>
|
||||
<li class="navBarCell1Rev">浣跨敤</li>
|
||||
<li><a href="../package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">绱㈠紩</a></li>
|
||||
<li><a href="../../../../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClientJson.html" title="com.iker.gid中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓å©<EFBFBD>竴涓ª</li>
|
||||
<li>涓嬩竴涓ª</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClientJson.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="GidClientJson.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClientJson.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClientJson.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
|
@ -1,50 +1,50 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0) on Fri Dec 02 10:32:23 CST 2011 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
|
||||
<title>绫» com.iker.gid.GidClientXmlé<6C>¨å‹ªå¨‡é<E280A1>¢¨</title>
|
||||
<title>类 com.iker.gid.GidClientXml的使用</title>
|
||||
<meta name="date" content="2011-12-02">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript"><!--
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="绫» com.iker.gid.GidClientXmlé<6C>¨å‹ªå¨‡é<E280A1>¢¨";
|
||||
parent.document.title="类 com.iker.gid.GidClientXml的使用";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>鎮ㄧ殑娴忚î<EFBFBD><EFBFBD>é<EFBFBD>£ã„¥å‡¡ç»‚佺敤 JavaScript銆‚</div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClientXml.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">绫»</a></li>
|
||||
<li class="navBarCell1Rev">浣跨敤</li>
|
||||
<li><a href="../package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">绱㈠紩</a></li>
|
||||
<li><a href="../../../../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClientXml.html" title="com.iker.gid中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓å©<EFBFBD>竴涓ª</li>
|
||||
<li>涓嬩竴涓ª</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClientXml.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="GidClientXml.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClientXml.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClientXml.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -63,36 +63,36 @@
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h2 title="绫» com.iker.gid.GidClientXml é<>¨å‹ªå¨‡é<E280A1>¢¨" class="title">绫» com.iker.gid.GidClientXml<br>é<EFBFBD>¨å‹ªå¨‡é<EFBFBD>¢¨</h2>
|
||||
<h2 title="类 com.iker.gid.GidClientXml 的使用" class="title">类 com.iker.gid.GidClientXml<br>的使用</h2>
|
||||
</div>
|
||||
<div class="classUseContainer">娌℃æ¹<EFBFBD>com.iker.gid.GidClientXmlé<6C>¨å‹æ•¤å¨‰•</div>
|
||||
<div class="classUseContainer">没有com.iker.gid.GidClientXml的用法</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClientXml.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">绫»</a></li>
|
||||
<li class="navBarCell1Rev">浣跨敤</li>
|
||||
<li><a href="../package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">绱㈠紩</a></li>
|
||||
<li><a href="../../../../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidClientXml.html" title="com.iker.gid中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓å©<EFBFBD>竴涓ª</li>
|
||||
<li>涓嬩竴涓ª</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClientXml.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="GidClientXml.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidClientXml.html" target="_top">框架</a></li>
|
||||
<li><a href="GidClientXml.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
|
@ -1,50 +1,50 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0) on Fri Dec 02 10:32:23 CST 2011 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
|
||||
<title>绫» com.iker.gid.GidStatusé<73>¨å‹ªå¨‡é<E280A1>¢¨</title>
|
||||
<title>类 com.iker.gid.GidStatus的使用</title>
|
||||
<meta name="date" content="2011-12-02">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript"><!--
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="绫» com.iker.gid.GidStatusé<73>¨å‹ªå¨‡é<E280A1>¢¨";
|
||||
parent.document.title="类 com.iker.gid.GidStatus的使用";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>鎮ㄧ殑娴忚î<EFBFBD><EFBFBD>é<EFBFBD>£ã„¥å‡¡ç»‚佺敤 JavaScript銆‚</div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidStatus.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">绫»</a></li>
|
||||
<li class="navBarCell1Rev">浣跨敤</li>
|
||||
<li><a href="../package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">绱㈠紩</a></li>
|
||||
<li><a href="../../../../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidStatus.html" title="com.iker.gid中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓å©<EFBFBD>竴涓ª</li>
|
||||
<li>涓嬩竴涓ª</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidStatus.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="GidStatus.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidStatus.html" target="_top">框架</a></li>
|
||||
<li><a href="GidStatus.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -63,36 +63,36 @@
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h2 title="绫» com.iker.gid.GidStatus é<>¨å‹ªå¨‡é<E280A1>¢¨" class="title">绫» com.iker.gid.GidStatus<br>é<EFBFBD>¨å‹ªå¨‡é<EFBFBD>¢¨</h2>
|
||||
<h2 title="类 com.iker.gid.GidStatus 的使用" class="title">类 com.iker.gid.GidStatus<br>的使用</h2>
|
||||
</div>
|
||||
<div class="classUseContainer">娌℃æ¹<EFBFBD>com.iker.gid.GidStatusé<73>¨å‹æ•¤å¨‰•</div>
|
||||
<div class="classUseContainer">没有com.iker.gid.GidStatus的用法</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidStatus.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">绫»</a></li>
|
||||
<li class="navBarCell1Rev">浣跨敤</li>
|
||||
<li><a href="../package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">绱㈠紩</a></li>
|
||||
<li><a href="../../../../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../com/iker/gid/GidStatus.html" title="com.iker.gid中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓å©<EFBFBD>竴涓ª</li>
|
||||
<li>涓嬩竴涓ª</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidStatus.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="GidStatus.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../../../../index.html?com/iker/gid/\class-useGidStatus.html" target="_top">框架</a></li>
|
||||
<li><a href="GidStatus.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
|
@ -1,4 +1,4 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
@ -11,13 +11,13 @@
|
||||
<body>
|
||||
<h1 class="bar"><a href="../../../com/iker/gid/package-summary.html" target="classFrame">com.iker.gid</a></h1>
|
||||
<div class="indexContainer">
|
||||
<h2 title="绫»">绫»</h2>
|
||||
<ul title="绫»">
|
||||
<li><a href="GidClient.html" title="com.iker.gidæ¶“î… æ®‘ç»«»" target="classFrame">GidClient</a></li>
|
||||
<li><a href="GidClientCmdLine.html" title="com.iker.gidæ¶“î… æ®‘ç»«»" target="classFrame">GidClientCmdLine</a></li>
|
||||
<li><a href="GidClientJson.html" title="com.iker.gidæ¶“î… æ®‘ç»«»" target="classFrame">GidClientJson</a></li>
|
||||
<li><a href="GidClientXml.html" title="com.iker.gidæ¶“î… æ®‘ç»«»" target="classFrame">GidClientXml</a></li>
|
||||
<li><a href="GidStatus.html" title="com.iker.gidæ¶“î… æ®‘ç»«»" target="classFrame">GidStatus</a></li>
|
||||
<h2 title="类">类</h2>
|
||||
<ul title="类">
|
||||
<li><a href="GidClient.html" title="com.iker.gid中的类" target="classFrame">GidClient</a></li>
|
||||
<li><a href="GidClientCmdLine.html" title="com.iker.gid中的类" target="classFrame">GidClientCmdLine</a></li>
|
||||
<li><a href="GidClientJson.html" title="com.iker.gid中的类" target="classFrame">GidClientJson</a></li>
|
||||
<li><a href="GidClientXml.html" title="com.iker.gid中的类" target="classFrame">GidClientXml</a></li>
|
||||
<li><a href="GidStatus.html" title="com.iker.gid中的类" target="classFrame">GidStatus</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<EFBFBD>ソ<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
@ -16,35 +16,35 @@
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>骼ョ繖ァ谿大ィエ蠢夭搓骰」繖・蜃。扈ゆスコ謨、 JavaScript驫<74></div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="迺コ螳<EFBFBD>郢<EFBFBD>オ濶ー蝓<EFBFBD>明轤ャ蟶エ"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">扈句ャェ邁ュ骰妹</a></li>
|
||||
<li>扈ォサ</li>
|
||||
<li><a href="package-use.html">豬」霍ィ謨、</a></li>
|
||||
<li><a href="package-tree.html">髀国</a></li>
|
||||
<li><a href="../../../deprecated-list.html">螳ク闌カ郢<EFBFBD>純カ</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">扈ア繹<EFBFBD>邏ゥ</a></li>
|
||||
<li><a href="../../../help-doc.html">逕ッ裵シ蟋ェ</a></li>
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li><a href="package-use.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>豸灘ゥ∫ォエ豸軟≧笆シ謳エ蠢灘ッ<EFBFBD></li>
|
||||
<li>豸灘ャゥ遶エ豸軟≧笆シ謳エ蠢灘ッ<EFBFBD></li>
|
||||
<li>上一个程序包</li>
|
||||
<li>下一个程序包</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../index.html?com/iker/gid/package-summary.html" target="_top">螯怜利轣ヲ</a></li>
|
||||
<li><a href="package-summary.html" target="_top">髀<EFBFBD>患赶矩暑カ</a></li>
|
||||
<li><a href="../../../index.html?com/iker/gid/package-summary.html" target="_top">框架</a></li>
|
||||
<li><a href="package-summary.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../allclasses-noframe.html">骼オ竄ャ髀亥、瑚「ォ</a></li>
|
||||
<li><a href="../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -63,47 +63,47 @@
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h1 title="扈句ャェ邁ュ骰妹" class="title">扈句ャェ邁ュ骰妹 com.iker.gid</h1>
|
||||
<h1 title="程序包" class="title">程序包 com.iker.gid</h1>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="扈ォ扈偃岌迹穂スス縲<EFBFBD>, 骰呈・<E59188><EFBFBD>サォ隸イ諡ー迹呻ス牙匐">
|
||||
<caption><span>扈ォ扈偃岌迹普</span><span class="tabEnd"> </span></caption>
|
||||
<table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="类概要表, 列表类和解释">
|
||||
<caption><span>类概要</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">扈ォサ</th>
|
||||
<th class="colLast" scope="col">迺<EFBFBD>ュ俶ァ<EFBFBD></th>
|
||||
<th class="colFirst" scope="col">类</th>
|
||||
<th class="colLast" scope="col">说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClient</a></td>
|
||||
<td class="colFirst"><a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid中的类">GidClient</a></td>
|
||||
<td class="colLast">
|
||||
<div class="block">骼カ蛟溯埋骼コ繝・蠖<EFBFBD></div>
|
||||
<div class="block">抽象接口</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><a href="../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClientCmdLine</a></td>
|
||||
<td class="colFirst"><a href="../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid中的类">GidClientCmdLine</a></td>
|
||||
<td class="colLast">
|
||||
<div class="block">骰帶<EFBFBD>謚、逅帛アセ譟溷ッョ蠢守イ<EFBFBD>GID髀亥カ<EFBFBD>ァ滄坤繖・蠖<EFBFBD>ッー讌謨ョ豸凪ぎID骰吝<EFBFBD>邏晞巡訷壽メ謳エ譌<EFBFBD>∵豬」霍ィ謨、迺<EFBFBD>Θ譟溷ッョ蠢灘ス<EFBFBD>ッー讌謨ョ豸凪ぎID骰吝<EFBFBD>邏<EFBFBD>
|
||||
謳エ譌<EFBFBD>∵骰呎<EFBFBD>ァ蝟<EFBFBD>オ懷コ「貉<EFBFBD>鵠窶ウ讚帝勢蜍ッ蜴、郛<EFBFBD>〝竄ャ螟舌<EFBFBD></div>
|
||||
<div class="block">命令行方式从GID服务器取得唯一ID号,是否应该使用该方式取得唯一ID号,
|
||||
应该取决于服务器的配置选项</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><a href="../../../com/iker/gid/GidClientJson.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClientJson</a></td>
|
||||
<td class="colFirst"><a href="../../../com/iker/gid/GidClientJson.html" title="com.iker.gid中的类">GidClientJson</a></td>
|
||||
<td class="colLast">
|
||||
<div class="block">骼ク<EFBFBD> JSON 髀∫沿蠏<E6B2BF>渚辣守エ。髑セ蟲ー邱アGID髞帛イ<E5B89B>ォ「迹穂スキ螽<EFBDB7>世繖ヲ﨡晞盾迹ー邏。骰呎<E9AAB0>ァ邱ア骰樶<E9AAB0>遶エID髞帛アス蝙ッ髀亥カ<E4BAA5>ァ滄坤ィ
|
||||
雹<EFBFBD>其縲城巡訷壽ヮ髏「繖、邁。HTTP骰怜ソ夭<EFBFBD>迺∝摎譽カ髀ら族邏。</div>
|
||||
<div class="block">按 JSON 数据格式获得GID,若要使用此方式取得唯一ID,则服务器
|
||||
必须是启用了HTTP协议访问方式</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><a href="../../../com/iker/gid/GidClientXml.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClientXml</a></td>
|
||||
<td class="colFirst"><a href="../../../com/iker/gid/GidClientXml.html" title="com.iker.gid中的类">GidClientXml</a></td>
|
||||
<td class="colLast">
|
||||
<div class="block">骼ク蝪廴L髀咲<EFBFBD>邏。髑セ蟲ー邱アGID髀∫沿蠏<EFBFBD>縛蟯<EFBFBD>ォ「迹穂スキ螽<EFBFBD>世繖ヲ﨡晞盾迹ー邏。骰呎<EFBFBD>ァ邱ア骰樶<EFBFBD>遶エID髞帛アス蝙ッ髀亥カ<EFBFBD>ァ滄坤ィ
|
||||
雹<EFBFBD>其縲城巡訷壽ヮ髏「繖、邁。HTTP骰怜ソ夭<EFBFBD>迺∝摎譽カ髀ら族邏。</div>
|
||||
<div class="block">按XML格式获得GID数据,若要使用此方式取得唯一ID,则服务器
|
||||
必须是启用了HTTP协议访问方式</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><a href="../../../com/iker/gid/GidStatus.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidStatus</a></td>
|
||||
<td class="colFirst"><a href="../../../com/iker/gid/GidStatus.html" title="com.iker.gid中的类">GidStatus</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
@ -114,30 +114,30 @@
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="迺コ螳<EFBFBD>郢<EFBFBD>オ濶ー蝓<EFBFBD>明轤ャ蟶エ"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">扈句ャェ邁ュ骰妹</a></li>
|
||||
<li>扈ォサ</li>
|
||||
<li><a href="package-use.html">豬」霍ィ謨、</a></li>
|
||||
<li><a href="package-tree.html">髀国</a></li>
|
||||
<li><a href="../../../deprecated-list.html">螳ク闌カ郢<EFBFBD>純カ</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">扈ア繹<EFBFBD>邏ゥ</a></li>
|
||||
<li><a href="../../../help-doc.html">逕ッ裵シ蟋ェ</a></li>
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li><a href="package-use.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>豸灘ゥ∫ォエ豸軟≧笆シ謳エ蠢灘ッ<EFBFBD></li>
|
||||
<li>豸灘ャゥ遶エ豸軟≧笆シ謳エ蠢灘ッ<EFBFBD></li>
|
||||
<li>上一个程序包</li>
|
||||
<li>下一个程序包</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../index.html?com/iker/gid/package-summary.html" target="_top">螯怜利轣ヲ</a></li>
|
||||
<li><a href="package-summary.html" target="_top">髀<EFBFBD>患赶矩暑カ</a></li>
|
||||
<li><a href="../../../index.html?com/iker/gid/package-summary.html" target="_top">框架</a></li>
|
||||
<li><a href="package-summary.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../allclasses-noframe.html">骼オ竄ャ髀亥、瑚「ォ</a></li>
|
||||
<li><a href="../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
|
@ -1,50 +1,50 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0) on Fri Dec 02 10:32:23 CST 2011 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
|
||||
<title>com.iker.gid 绫诲垎ç<EFBFBD>žå‚œç²¨é<EFBFBD>‹„</title>
|
||||
<title>com.iker.gid 类分层结构</title>
|
||||
<meta name="date" content="2011-12-02">
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript"><!--
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="com.iker.gid 绫诲垎ç<EFBFBD>žå‚œç²¨é<EFBFBD>‹„";
|
||||
parent.document.title="com.iker.gid 类分层结构";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>鎮ㄧ殑娴忚î<EFBFBD><EFBFBD>é<EFBFBD>£ã„¥å‡¡ç»‚佺敤 JavaScript銆‚</div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li>绫»</li>
|
||||
<li>浣跨敤</li>
|
||||
<li class="navBarCell1Rev">é<EFBFBD><EFBFBD>‘</li>
|
||||
<li><a href="../../../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">绱㈠紩</a></li>
|
||||
<li><a href="../../../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li class="navBarCell1Rev">树</li>
|
||||
<li><a href="../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓å©<EFBFBD>竴涓ª</li>
|
||||
<li>涓嬩竴涓ª</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../index.html?com/iker/gid/package-tree.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="package-tree.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../../../index.html?com/iker/gid/package-tree.html" target="_top">框架</a></li>
|
||||
<li><a href="package-tree.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -63,23 +63,23 @@
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h1 class="title">绋嬪ç°é<EFBFBD>–å<EFBFBD>Œom.iker.gidé<64>¨å‹«åžŽç<C5BD>žå‚œç²¨é<C2A8>‹„</h1>
|
||||
<h1 class="title">程序包com.iker.gid的分层结构</h1>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<h2 title="绫诲垎ç<EFBFBD>žå‚œç²¨é<EFBFBD>‹„">绫诲垎ç<EFBFBD>žå‚œç²¨é<EFBFBD>‹„</h2>
|
||||
<h2 title="类分层结构">类分层结构</h2>
|
||||
<ul>
|
||||
<li type="circle">java.lang.Object
|
||||
<ul>
|
||||
<li type="circle">com.iker.gid.<a href="../../../com/iker/gid/GidClient.html" title="com.iker.gidæ¶“î… æ®‘ç»«»"><span class="strong">GidClient</span></a>
|
||||
<li type="circle">com.iker.gid.<a href="../../../com/iker/gid/GidClient.html" title="com.iker.gid中的类"><span class="strong">GidClient</span></a>
|
||||
<ul>
|
||||
<li type="circle">com.iker.gid.<a href="../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gidæ¶“î… æ®‘ç»«»"><span class="strong">GidClientCmdLine</span></a></li>
|
||||
<li type="circle">com.iker.gid.<a href="../../../com/iker/gid/GidClientJson.html" title="com.iker.gidæ¶“î… æ®‘ç»«»"><span class="strong">GidClientJson</span></a></li>
|
||||
<li type="circle">com.iker.gid.<a href="../../../com/iker/gid/GidClientXml.html" title="com.iker.gidæ¶“î… æ®‘ç»«»"><span class="strong">GidClientXml</span></a></li>
|
||||
<li type="circle">com.iker.gid.<a href="../../../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid中的类"><span class="strong">GidClientCmdLine</span></a></li>
|
||||
<li type="circle">com.iker.gid.<a href="../../../com/iker/gid/GidClientJson.html" title="com.iker.gid中的类"><span class="strong">GidClientJson</span></a></li>
|
||||
<li type="circle">com.iker.gid.<a href="../../../com/iker/gid/GidClientXml.html" title="com.iker.gid中的类"><span class="strong">GidClientXml</span></a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li type="circle">com.iker.gid.<a href="../../../com/iker/gid/GidClientCmdLine.NameValue.html" title="com.iker.gidæ¶“î… æ®‘ç»«»"><span class="strong">GidClientCmdLine.NameValue</span></a></li>
|
||||
<li type="circle">com.iker.gid.<a href="../../../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gidæ¶“î… æ®‘ç»«»"><span class="strong">GidClientCmdLine.Tokens</span></a></li>
|
||||
<li type="circle">com.iker.gid.<a href="../../../com/iker/gid/GidStatus.html" title="com.iker.gidæ¶“î… æ®‘ç»«»"><span class="strong">GidStatus</span></a></li>
|
||||
<li type="circle">com.iker.gid.<a href="../../../com/iker/gid/GidClientCmdLine.NameValue.html" title="com.iker.gid中的类"><span class="strong">GidClientCmdLine.NameValue</span></a></li>
|
||||
<li type="circle">com.iker.gid.<a href="../../../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gid中的类"><span class="strong">GidClientCmdLine.Tokens</span></a></li>
|
||||
<li type="circle">com.iker.gid.<a href="../../../com/iker/gid/GidStatus.html" title="com.iker.gid中的类"><span class="strong">GidStatus</span></a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
@ -87,30 +87,30 @@
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li>绫»</li>
|
||||
<li>浣跨敤</li>
|
||||
<li class="navBarCell1Rev">é<EFBFBD><EFBFBD>‘</li>
|
||||
<li><a href="../../../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">绱㈠紩</a></li>
|
||||
<li><a href="../../../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li class="navBarCell1Rev">树</li>
|
||||
<li><a href="../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓å©<EFBFBD>竴涓ª</li>
|
||||
<li>涓嬩竴涓ª</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../index.html?com/iker/gid/package-tree.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="package-tree.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../../../index.html?com/iker/gid/package-tree.html" target="_top">框架</a></li>
|
||||
<li><a href="package-tree.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
|
@ -1,50 +1,50 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0) on Fri Dec 02 10:32:23 CST 2011 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
|
||||
<title>绋嬪ç°é<EFBFBD>–… com.iker.gidé<64>¨å‹ªå¨‡é<E280A1>¢¨</title>
|
||||
<title>程序包 com.iker.gid的使用</title>
|
||||
<meta name="date" content="2011-12-02">
|
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript"><!--
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="绋嬪ç°é<EFBFBD>–… com.iker.gidé<64>¨å‹ªå¨‡é<E280A1>¢¨";
|
||||
parent.document.title="程序包 com.iker.gid的使用";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>鎮ㄧ殑娴忚î<EFBFBD><EFBFBD>é<EFBFBD>£ã„¥å‡¡ç»‚佺敤 JavaScript銆‚</div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li>绫»</li>
|
||||
<li class="navBarCell1Rev">浣跨敤</li>
|
||||
<li><a href="package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="../../../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">绱㈠紩</a></li>
|
||||
<li><a href="../../../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓å©<EFBFBD>竴涓ª</li>
|
||||
<li>涓嬩竴涓ª</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../index.html?com/iker/gid/package-use.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="package-use.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../../../index.html?com/iker/gid/package-use.html" target="_top">框架</a></li>
|
||||
<li><a href="package-use.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -63,22 +63,22 @@
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h1 title="绋嬪ç°é<EFBFBD>–… com.iker.gid é<>¨å‹ªå¨‡é<E280A1>¢¨" class="title">绋嬪ç°é<EFBFBD>–… com.iker.gid<br>é<EFBFBD>¨å‹ªå¨‡é<EFBFBD>¢¨</h1>
|
||||
<h1 title="程序包 com.iker.gid 的使用" class="title">程序包 com.iker.gid<br>的使用</h1>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="com.iker.gid">
|
||||
<!-- -->
|
||||
</a>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="浣跨敤ç<EFBFBD>›¨, é<>’楄〃绫诲拰瑙i噴">
|
||||
<caption><span><a href="../../../com/iker/gid/package-summary.html">com.iker.gid</a>浣跨敤é<EFBFBD>¨„<a href="../../../com/iker/gid/package-summary.html">com.iker.gid</a>æ¶“î… æ®‘ç»«»</span><span class="tabEnd"> </span></caption>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表类和解释">
|
||||
<caption><span><a href="../../../com/iker/gid/package-summary.html">com.iker.gid</a>使用的<a href="../../../com/iker/gid/package-summary.html">com.iker.gid</a>中的类</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">绫诲拰璇å˜æ§‘</th>
|
||||
<th class="colOne" scope="col">类和说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><a href="../../../com/iker/gid/class-use/GidClient.html#com.iker.gid">GidClient</a>
|
||||
<div class="block">鎶借薄鎺ュ彛</div>
|
||||
<div class="block">抽象接口</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
@ -89,30 +89,30 @@
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li>绫»</li>
|
||||
<li class="navBarCell1Rev">浣跨敤</li>
|
||||
<li><a href="package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="../../../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">绱㈠紩</a></li>
|
||||
<li><a href="../../../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../../../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓å©<EFBFBD>竴涓ª</li>
|
||||
<li>涓嬩竴涓ª</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../index.html?com/iker/gid/package-use.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="package-use.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../../../index.html?com/iker/gid/package-use.html" target="_top">框架</a></li>
|
||||
<li><a href="package-use.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../../../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
|
@ -1,50 +1,50 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0) on Fri Dec 02 10:32:23 CST 2011 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
|
||||
<title>甯æ<EFBFBD><EFBFBD>噺瀛æ¥<EFBFBD>é<EFBFBD>Š¼</title>
|
||||
<title>常量字段值</title>
|
||||
<meta name="date" content="2011-12-02">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript"><!--
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="甯æ<EFBFBD><EFBFBD>噺瀛æ¥<EFBFBD>é<EFBFBD>Š¼";
|
||||
parent.document.title="常量字段值";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>鎮ㄧ殑娴忚î<EFBFBD><EFBFBD>é<EFBFBD>£ã„¥å‡¡ç»‚佺敤 JavaScript銆‚</div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li>绫»</li>
|
||||
<li>浣跨敤</li>
|
||||
<li><a href="com/iker/gid/package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li><a href="index-files/index-1.html">绱㈠紩</a></li>
|
||||
<li><a href="help-doc.html">甯姪</a></li>
|
||||
<li><a href="com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li><a href="com/iker/gid/package-tree.html">树</a></li>
|
||||
<li><a href="deprecated-list.html">已过时</a></li>
|
||||
<li><a href="index-files/index-1.html">索引</a></li>
|
||||
<li><a href="help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓å©<EFBFBD>竴涓ª</li>
|
||||
<li>涓嬩竴涓ª</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="index.html?constant-values.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="constant-values.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="index.html?constant-values.html" target="_top">框架</a></li>
|
||||
<li><a href="constant-values.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -63,8 +63,8 @@
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h1 title="甯æ<EFBFBD><EFBFBD>噺瀛æ¥<EFBFBD>é<EFBFBD>Š¼" class="title">甯æ<EFBFBD><EFBFBD>噺瀛æ¥<EFBFBD>é<EFBFBD>Š¼</h1>
|
||||
<h2 title="é<EFBFBD>©î†¼ç¶<EFBFBD>">é<EFBFBD>©î†¼ç¶<EFBFBD></h2>
|
||||
<h1 title="常量字段值" class="title">常量字段值</h1>
|
||||
<h2 title="目录">目录</h2>
|
||||
<ul>
|
||||
<li><a href="#com.iker">com.iker.*</a></li>
|
||||
</ul>
|
||||
@ -75,12 +75,12 @@
|
||||
<h2 title="com.iker">com.iker.*</h2>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="甯æ<EFBFBD><EFBFBD>噺瀛æ¥<EFBFBD>é<EFBFBD>Šè‰°ã€ƒ, é<>’楄〃甯æ<C2AF><C3A6>噺瀛æ¥<C3A6>é<C592>œå±½â‚¬¼">
|
||||
<caption><span>com.iker.gid.<a href="com/iker/gid/GidStatus.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidStatus</a></span><span class="tabEnd"> </span></caption>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="常量字段值表, 列表常量字段和值">
|
||||
<caption><span>com.iker.gid.<a href="com/iker/gid/GidStatus.html" title="com.iker.gid中的类">GidStatus</a></span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">闄愬畾绗﹀拰绫诲瀷</th>
|
||||
<th scope="col">甯æ<EFBFBD><EFBFBD>噺瀛æ¥<EFBFBD></th>
|
||||
<th class="colLast" scope="col">é<EFBFBD>Š¼</th>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th scope="col">常量字段</th>
|
||||
<th class="colLast" scope="col">值</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
@ -154,30 +154,30 @@
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li>绫»</li>
|
||||
<li>浣跨敤</li>
|
||||
<li><a href="com/iker/gid/package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li><a href="index-files/index-1.html">绱㈠紩</a></li>
|
||||
<li><a href="help-doc.html">甯姪</a></li>
|
||||
<li><a href="com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li><a href="com/iker/gid/package-tree.html">树</a></li>
|
||||
<li><a href="deprecated-list.html">已过时</a></li>
|
||||
<li><a href="index-files/index-1.html">索引</a></li>
|
||||
<li><a href="help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓å©<EFBFBD>竴涓ª</li>
|
||||
<li>涓嬩竴涓ª</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="index.html?constant-values.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="constant-values.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="index.html?constant-values.html" target="_top">框架</a></li>
|
||||
<li><a href="constant-values.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
|
@ -1,50 +1,50 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0) on Fri Dec 02 10:32:23 CST 2011 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
|
||||
<title>宸茶çą<EFBFBD>éŹ<EFBFBD>ĺ‰<EFBFBD>殑鍒楄ă€<EFBFBD></title>
|
||||
<title>已过时的列表</title>
|
||||
<meta name="date" content="2011-12-02">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript"><!--
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="宸茶çą<EFBFBD>éŹ<EFBFBD>ĺ‰<EFBFBD>殑鍒楄ă€<EFBFBD>";
|
||||
parent.document.title="已过时的列表";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>鎮ㄧ殑娴忚鍣ㄥ凡绂佺敤 JavaScript銆‚</div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="ç’şĺ® çą<EFBFBD>瀵艰埅閾炬帴"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="com/iker/gid/package-summary.html">绋嬪ç°éŤ–…</a></li>
|
||||
<li>绫»</li>
|
||||
<li>浣跨敤</li>
|
||||
<li><a href="com/iker/gid/package-tree.html">鏍‘</a></li>
|
||||
<li class="navBarCell1Rev">宸茶çą<EFBFBD>éŹ<EFBFBD>¶</li>
|
||||
<li><a href="index-files/index-1.html">ç»±ă<EFBFBD> ç´©</a></li>
|
||||
<li><a href="help-doc.html">甯姪</a></li>
|
||||
<li><a href="com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li><a href="com/iker/gid/package-tree.html">树</a></li>
|
||||
<li class="navBarCell1Rev">已过时</li>
|
||||
<li><a href="index-files/index-1.html">索引</a></li>
|
||||
<li><a href="help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓ĺ©<EFBFBD>竴涓Ş</li>
|
||||
<li>涓嬩竴涓Ş</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="index.html?deprecated-list.html" target="_top">妗ĺ—<EFBFBD>ç<EFBFBD>¦</a></li>
|
||||
<li><a href="deprecated-list.html" target="_top">éŹ<EFBFBD>犳鏋¶</a></li>
|
||||
<li><a href="index.html?deprecated-list.html" target="_top">框架</a></li>
|
||||
<li><a href="deprecated-list.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="allclasses-noframe.html">鎵€éŹ<EFBFBD>夌被</a></li>
|
||||
<li><a href="allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -63,36 +63,36 @@
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h1 title="宸茶çą<EFBFBD>éŹ<EFBFBD>ĺ‰<EFBFBD>殑 API" class="title">宸茶çą<EFBFBD>éŹ<EFBFBD>ĺ‰<EFBFBD>殑 API</h1>
|
||||
<h2 title="é<EFBFBD>©î†Ľç¶Ť">é<EFBFBD>©î†Ľç¶Ť</h2>
|
||||
<h1 title="已过时的 API" class="title">已过时的 API</h1>
|
||||
<h2 title="目录">目录</h2>
|
||||
</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="ç’şĺ® çą<EFBFBD>瀵艰埅閾炬帴"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="com/iker/gid/package-summary.html">绋嬪ç°éŤ–…</a></li>
|
||||
<li>绫»</li>
|
||||
<li>浣跨敤</li>
|
||||
<li><a href="com/iker/gid/package-tree.html">鏍‘</a></li>
|
||||
<li class="navBarCell1Rev">宸茶çą<EFBFBD>éŹ<EFBFBD>¶</li>
|
||||
<li><a href="index-files/index-1.html">ç»±ă<EFBFBD> ç´©</a></li>
|
||||
<li><a href="help-doc.html">甯姪</a></li>
|
||||
<li><a href="com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li><a href="com/iker/gid/package-tree.html">树</a></li>
|
||||
<li class="navBarCell1Rev">已过时</li>
|
||||
<li><a href="index-files/index-1.html">索引</a></li>
|
||||
<li><a href="help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓ĺ©<EFBFBD>竴涓Ş</li>
|
||||
<li>涓嬩竴涓Ş</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="index.html?deprecated-list.html" target="_top">妗ĺ—<EFBFBD>ç<EFBFBD>¦</a></li>
|
||||
<li><a href="deprecated-list.html" target="_top">éŹ<EFBFBD>犳鏋¶</a></li>
|
||||
<li><a href="index.html?deprecated-list.html" target="_top">框架</a></li>
|
||||
<li><a href="deprecated-list.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="allclasses-noframe.html">鎵€éŹ<EFBFBD>夌被</a></li>
|
||||
<li><a href="allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
|
@ -1,50 +1,50 @@
|
||||
<EFBFBD>ソ<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0) on Fri Dec 02 10:32:23 CST 2011 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
|
||||
<title>API 逕ッ裵シ蟋ェ</title>
|
||||
<title>API 帮助</title>
|
||||
<meta name="date" content="2011-12-02">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript"><!--
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="API 逕ッ裵シ蟋ェ";
|
||||
parent.document.title="API 帮助";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>骼ョ繖ァ谿大ィエ蠢夭搓骰」繖・蜃。扈ゆスコ謨、 JavaScript驫<74></div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="迺コ螳<EFBFBD>郢<EFBFBD>オ濶ー蝓<EFBFBD>明轤ャ蟶エ"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="com/iker/gid/package-summary.html">扈句ャェ邁ュ骰妹</a></li>
|
||||
<li>扈ォサ</li>
|
||||
<li>豬」霍ィ謨、</li>
|
||||
<li><a href="com/iker/gid/package-tree.html">髀国</a></li>
|
||||
<li><a href="deprecated-list.html">螳ク闌カ郢<EFBFBD>純カ</a></li>
|
||||
<li><a href="index-files/index-1.html">扈ア繹<EFBFBD>邏ゥ</a></li>
|
||||
<li class="navBarCell1Rev">逕ッ裵シ蟋ェ</li>
|
||||
<li><a href="com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li><a href="com/iker/gid/package-tree.html">树</a></li>
|
||||
<li><a href="deprecated-list.html">已过时</a></li>
|
||||
<li><a href="index-files/index-1.html">索引</a></li>
|
||||
<li class="navBarCell1Rev">帮助</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>豸灘ゥ∫ォエ豸頭</li>
|
||||
<li>豸灘ャゥ遶エ豸頭</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="index.html?help-doc.html" target="_top">螯怜利轣ヲ</a></li>
|
||||
<li><a href="help-doc.html" target="_top">髀<EFBFBD>患赶矩暑カ</a></li>
|
||||
<li><a href="index.html?help-doc.html" target="_top">框架</a></li>
|
||||
<li><a href="help-doc.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="allclasses-noframe.html">骼オ竄ャ髀亥、瑚「ォ</a></li>
|
||||
<li><a href="allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -63,137 +63,137 @@
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h1 class="title">蟋擘 API 髀ょ岑縲る勢蜍ュ邊咲シ∝岑譟溷ッョ<EFBDAF></h1>
|
||||
<div class="subTitle">蟋擘 API (謳エ譌よ弗扈句ャェ邁ュ郛よ<E9839B>ォ笆シ骼コ繝・蠖<EFBDA5>) 髀ょ岑縲る獄蜻ュ諠育オ迹ー邁イ豬懷コ。訒ア髑ク﨟<EFBDB8>旭豸軟<E8B1B8>谿第、、蝨ュ豢ー髏ィ蜍ッ縲蛾来「, 豼。蛯咏ャ<E5928F>七竄ャ譚ゥ闊ャ竄ャ<E7AB84></div>
|
||||
<h1 class="title">此 API 文档的组织方式</h1>
|
||||
<div class="subTitle">此 API (应用程序编程接口) 文档包含对应于导航栏中的项目的页面, 如下所述。</div>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h2>扈句ャェ邁ュ骰妹</h2>
|
||||
<p>蟋」蠢朱∪扈句ャェ邁ュ骰門其蜈倬処螟臥ォエ豸軟∴縲蛾来「, 骰乗愀閻鷹獄蜻ュ諠育ケ蜀ェ谿醍サォ隸イ諡ー骼コ繝・蠖幃勢蜍ォ蝙ェ逅帙├蠑キ骰剰扱都ァ迹穂スオ竄ャ蛯幟<E89BAF>讀、逕ク貎ー骰咒<E9AAB0>莠帝獄蜻ュ諠磯刻蠇晞∪扈ォ隸イ蝓<EFBDB2>:</p>
|
||||
<h2>程序包</h2>
|
||||
<p>每个程序包都有一个页面, 其中包含它的类和接口的列表及其概要。此页面可以包含六个类别:</p>
|
||||
<ul>
|
||||
<li>骼コ繝・蠖<EFBFBD> (髀よサ邯<C280>)</li>
|
||||
<li>扈ォサ</li>
|
||||
<li>髀区ーォ螯<EFBFBD></li>
|
||||
<li>蟇ョ蛯夂宛髢ソ谺悌<EFBFBD></li>
|
||||
<li>髢ソ谺悌<EFBFBD></li>
|
||||
<li>螽峨┼蝎エ扈ォ隸イ轢キ</li>
|
||||
<li>接口 (斜体)</li>
|
||||
<li>类</li>
|
||||
<li>枚举</li>
|
||||
<li>异常错误</li>
|
||||
<li>错误</li>
|
||||
<li>注释类型</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="blockList">
|
||||
<h2>扈ォサ/骼コ繝・蠖<EFBDA5></h2>
|
||||
<p>蟋」蠢朱∪扈ォサ, 骼コ繝・蠖<EFBDA5>, 螳灘アス郞懃サォ隸イ諡ー螳灘アス郞憺室繝・蠖幃粍闃・貉<EFBDA5>忽蜍ョ蝴憺勢蜍ッ縲蛾来鄧ャ竄ャ蛯壼樟豸軟<E8B1B8>逖。豸軟∴縲蛾来繹、蜈倬世蜿倡ャ<E580A1>粍繖・蝙<EFBDA5> (扈ォサ/骼コ繝・蠖帷仲蟄俶ァ<E4BFB6>, 蟋貞<E89F8B>都ヲ逅岑, 豬<>繝・蠑キ迺<EFBDB7>クセ邊城勢蜍ャ蝙夐惚讓ソ訒ゥ髀ь) 郛∝峡蝙<E5B3A1>:</p>
|
||||
<h2>类/接口</h2>
|
||||
<p>每个类, 接口, 嵌套类和嵌套接口都有各自的页面。其中每个页面都由三部分 (类/接口说明, 概要表, 以及详细的成员说明) 组成:</p>
|
||||
<ul>
|
||||
<li>扈ォ闕、謌キ骼オ蝙ョ豬<EFBFBD></li>
|
||||
<li>髏ゥ蟄伜クエ轢帶┛陲ォ</li>
|
||||
<li>骼オ竄ャ髀亥、雁<EFBFBD>髏ュ繝・逑咎室繝・蠖<EFBFBD></li>
|
||||
<li>骼オ竄ャ髀亥、雁<EFBFBD>髏ュ繝・逍<EFBFBD>頗謇ョ陲ォ</li>
|
||||
<li>扈ォサ/骼コ繝・蠖帶セケ迚域ァ<E59F9F></li>
|
||||
<li>扈ォサ/骼コ繝・蠖帷仲蟄俶ァ<E4BFB6></li>
|
||||
<li>类继承图</li>
|
||||
<li>直接子类</li>
|
||||
<li>所有已知子接口</li>
|
||||
<li>所有已知实现类</li>
|
||||
<li>类/接口声明</li>
|
||||
<li>类/接口说明</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>螳灘アス郞懃サォ扈偃岌迹普</li>
|
||||
<li>轢帶・<EFBFBD><EFBFBD>蟋貞<EFBFBD>都ヲ</li>
|
||||
<li>髀句怯竄ャ迥イ讚貞ァ貞<EFBFBD>都ヲ</li>
|
||||
<li>髀りァ<EFBFBD>。カ蟋貞<EFBFBD>都ヲ</li>
|
||||
<li>嵌套类概要</li>
|
||||
<li>字段概要</li>
|
||||
<li>构造器概要</li>
|
||||
<li>方法概要</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>轢帶・<EFBFBD><EFBFBD>迺<EFBFBD>クセ邊冗挑蜍ャ譫。</li>
|
||||
<li>髀句怯竄ャ迥イ讚堤仲<EFBFBD>セ邊冗挑蜍ャ譫。</li>
|
||||
<li>髀りァ<EFBFBD>。カ迺<EFBFBD>クセ邊冗挑蜍ャ譫。</li>
|
||||
<li>字段详细资料</li>
|
||||
<li>构造器详细资料</li>
|
||||
<li>方法详细资料</li>
|
||||
</ul>
|
||||
<p>蟋」蠢朱∪蟋貞<EFBFBD>都ヲ髀会シ<EFBFBD>エー髢ョ阯牙ッ倬忽薰・訒壽、、蝨ュ豢ー髏ィ蜍ョ訒帷シ∝履訒ゥ髀<EFBFBD>コ」谿醍サ齢α遶エ骰吶Ε竄ャ蛯幟岌迹穂スケ貎ッ髏ゥ裵ス蟇懃帶・∫<EFBFBD>讀、蜩<EFBFBD>ーュ骼コ謗大棯, 髑ー蟯<EFBDB0>∩郛∝履訒ゥ髀<EFBDA9>コ。蝙ッ骼ク螟雁樟骰ヲ繖ヲ邁ョ豬<EFBDAE><E8B1AC><EFBFBD><EFBFBD>豸軟<E8B1B8>蝴ュ髏懈屋谿第、、蜩<EFBDA4>ーュ骼コ謗大棯驫<E6A3AF><E9A9AB>郢夜渚陷らケ夐失菴キ邁。扈句ャェ邁ュ骰帶ィサ蠅榊ッ、陌ケ迴幃勢蜍ッ竄ャ譏冗キォ骰貞吏邊埼恰<E59FBC></p>
|
||||
<p>每个概要条目都包含该项目的详细说明的第一句。概要条目按字母顺序排列, 而详细说明则按其在源代码中出现的顺序排列。这样保持了程序员所建立的逻辑分组。</p>
|
||||
</li>
|
||||
<li class="blockList">
|
||||
<h2>螽峨┼蝎エ扈ォ隸イ轢キ</h2>
|
||||
<p>蟋」蠢朱∪螽峨┼蝎エ扈ォ隸イ轢キ髢ョ闃・貉<EFBFBD>忽蜍ョ蝴憺勢蜍ッ縲蛾来「, 骰乗愀閻鷹獄蜻ュ諠域オ<E59F9F>繝、隨<EFBDA4>粍繖・蝙<EFBDA5>:</p>
|
||||
<h2>注释类型</h2>
|
||||
<p>每个注释类型都有各自的页面, 其中包含以下部分:</p>
|
||||
<ul>
|
||||
<li>螽峨┼蝎エ扈ォ隸イ轢キ貔ケ迚域ァ<EFBFBD></li>
|
||||
<li>螽峨┼蝎エ扈ォ隸イ轢キ迺<EFBFBD>ュ俶ァ<EFBFBD></li>
|
||||
<li>雹<EFBFBD>其貂カ骰丞<EFBFBD>遉悟ァ貞<EFBFBD>都ヲ</li>
|
||||
<li>骰咒<EFBFBD>竄ャ螟雁雌扈ア迥ウ都ァ迹普</li>
|
||||
<li>骰丞<EFBFBD>遉檎仲<EFBFBD>セ邊冗挑蜍ャ譫。</li>
|
||||
<li>注释类型声明</li>
|
||||
<li>注释类型说明</li>
|
||||
<li>必需元素概要</li>
|
||||
<li>可选元素概要</li>
|
||||
<li>元素详细资料</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="blockList">
|
||||
<h2>髀区ーォ螯<EFBFBD></h2>
|
||||
<p>蟋」蠢朱∪髀区ーォ螯<EFBFBD>粍闃・貉<EFBFBD>忽蜍ョ蝴憺勢蜍ッ縲蛾来「, 骰乗愀閻鷹獄蜻ュ諠域オ<E59F9F>繝、隨<EFBDA4>粍繖・蝙<EFBDA5>:</p>
|
||||
<h2>枚举</h2>
|
||||
<p>每个枚举都有各自的页面, 其中包含以下部分:</p>
|
||||
<ul>
|
||||
<li>髀区ーォ螯<EFBFBD>セケ迚域ァ<EFBFBD></li>
|
||||
<li>髀区ーォ螯<EFBFBD>仲蟄俶ァ<EFBFBD></li>
|
||||
<li>髀区ーォ螯<EFBFBD>髪謳∝匱蟋貞<EFBFBD>都ヲ</li>
|
||||
<li>髀区ーォ螯<EFBFBD>髪謳∝匱迺<EFBFBD>クセ邊冗挑蜍ャ譫。</li>
|
||||
<li>枚举声明</li>
|
||||
<li>枚举说明</li>
|
||||
<li>枚举常量概要</li>
|
||||
<li>枚举常量详细资料</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="blockList">
|
||||
<h2>豬」霍ィ謨、</h2>
|
||||
<p>蟋」蠢朱∪螳ク蜿画档螯暦ス<EFBFBD>ッイ髏ィ蜍ュ笆シ謳エ蠢灘ッ<EFBFBD>, 扈ォ隸イ諡ー骼コ繝・蠖幃粍闃・貉<EFBDA5>忽蜍ョ蝴憺勢蜍ィ竄ャ貊螽<C280>世繖「竄ャ豼九蛾来鄧ャ竄ャ蛯幟<E89BAF>讀、逕ク貎ー豬<EFBDB0>螫ャ邊帶オ懷藍螽<E8978D>世繖ァ邊ー轢ケ豌ア陲ォ骼エ譬ォ笆シ謳エ蠢灘ッ倬勢蜍ェ謐「豬」譖「蜆エ骰貞吏谿醍サ句ャェ邁ュ骰妹, 扈ォサ, 髀りァ<E3828A>。カ, 髀句怯竄ャ迥イ讚帝骨螻ス逑ァ螽育せ竄ャ蛯夭<E89BAF>豬懷コ」邊ー轢ケ豌ア谿醍サォ扈伜棹骼コ繝・蠖<EFBDA5> A, 骰丞椦竄ャ貊螽<C280>世繖「竄ャ豼九蛾来繹<E69DA5>蟇倬忽ォ A 髏ィ蜍ォ逑咏サォサ, 貔ケ迚域ァ第カ銅 A 髏ィ蜍ォ逑ァ螽扱, 譚ゥ譁ソ豢<EFBDBF> A 髏ィ蜍ャ譟溷ィ鴛, 豬<>繝・蠑キ逕ッ<E98095>ス貉∫サォ隸イ轢キ豸銅 A 髏ィ蜍ォ蠑ャ髀∵屋谿鷹盾隗<E79BBE>。カ骰懷アセ轢ッ髢ォ迥イ讚帝恰蛯晟<E89BAF>髣ゐ<E9ABA3>﨡晄、、逕ク貎ー髏ィ蜍ャ譟溷ィ画屐讒ク: 譽」譬ァ蜴帶撼﨡<E692BC>圜扈句ャェ邁ュ骰妹, 扈ォ扈伜棹骼コ繝・蠖<EFBDA5>, 髏定キコ謔鈴漉譖槫坩轢オ濶ー蝓<EFBDB0>渚蠢手<E8A0A2>髏ィ<E9AB8F> "豬」霍ィ謨、" 髢セ轤ャ蟶エ驫<EFBDB4></p>
|
||||
<h2>使用</h2>
|
||||
<p>每个已文档化的程序包, 类和接口都有各自的“使用”页面。此页面介绍了使用给定类或程序包的任何部分的程序包, 类, 方法, 构造器和字段。对于给定的类或接口 A, 其“使用”页面包含 A 的子类, 声明为 A 的字段, 返回 A 的方法, 以及带有类型为 A 的参数的方法和构造器。访问此页面的方法是: 首先转至程序包, 类或接口, 然后单击导航栏中的 "使用" 链接。</p>
|
||||
</li>
|
||||
<li class="blockList">
|
||||
<h2>髀国 (扈ォ隸イ蝙守◇蛯懃イィ髀灸)</h2>
|
||||
<p>轢オ騾帷ーャ骼オ竄ャ髀亥、娯名謳エ蠢灘ッ<EFBFBD>, 髀亥、臥ォエ豸頭 <a href="overview-tree.html">扈ォ隸イ蝙守◇蛯懃イィ髀灸</a> 讀、逕ク貎ー, 豬<>繝・蠑キ蟋」蠢朱∪扈句ャェ邁ュ骰門賊谿鷹穀蝸礼慍郛∵超轢ッ驫<EFBDAF><E9A9AB>逖。豸軟>蝙守◇蛯懃イィ髀句怯縲蛾来繹、蜈倬獄蜻ュ諠育サォ闕、谿鷹穀讌<E7A980><EFBFBD>骨螻セ蟶エ骰呻ス<E591BB>ョ鷹穀讌<E7A980><EFBFBD>恰蛯咏イ<E5928F> <code>java.lang.Object</code> 蟇ョ竄ャ豼ョ<EFBFBD>, 骼ク螟梧姐骼オ霍ィ邊ィ髀句境訒ョ扈ォ譏冗ケ倡菅螻セ蟶馴穀讀シ竄ャ蛯帛クエ骰呻ス<E591BB>ャ画オ<E794BB><EFBDB5> <code>java.lang.Object</code> 郛<EFBFBD><EFBFBD>」咎恰<EFBFBD></p>
|
||||
<h2>树 (类分层结构)</h2>
|
||||
<p>对于所有程序包, 有一个 <a href="overview-tree.html">类分层结构</a> 页面, 以及每个程序包的分层结构。每个分层结构页面都包含类的列表和接口的列表。从 <code>java.lang.Object</code> 开始, 按继承结构对类进行排列。接口不从 <code>java.lang.Object</code> 继承。</p>
|
||||
<ul>
|
||||
<li>髀後Ι貉<EFBFBD>挨貊<EFBFBD>岌迹吝<EFBFBD>壺ぎ豼九蛾来繹。讀<EFBFBD>, 骰玲屓蝴ョ "髀国" 轣丞利讓臥サ辜伜「埼処螟娯名謳エ蠢灘ッ倬勢蜍ォ蝙守◇蛯懃イィ髀句叫竄ャ<E7AB84></li>
|
||||
<li>髀後Ι貉<EFBFBD>雛迹ー逡セ扈句ャェ邁ュ骰妹, 扈ォ扈伜棹骼コ繝・蠖帶、、逕ク貎ー髀Ω, 骰玲屓蝴ョ "髀国" 轣丞藍邊朱巡蜑ァ縺夂仲繝ァ笆シ謳エ蠢灘ッ倬勢蜍ォ蝙守◇蛯懃イィ髀句叫竄ャ<E7AB84></li>
|
||||
<li>查看“概览”页面时, 单击 "树" 将显示所有程序包的分层结构。</li>
|
||||
<li>查看特定程序包, 类或接口页面时, 单击 "树" 将仅显示该程序包的分层结构。</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="blockList">
|
||||
<h2>螳ク闌カ郢<EFBFBD>純蜑∵ョ<EFBFBD> API</h2>
|
||||
<p><a href="deprecated-list.html">螳ク闌カ郢<EFBFBD>純蜑∵ョ<EFBFBD> API</a> 讀、逕ク貎ー骰呈・蝴ュ豬懷利蠅埼処螟雁<E89E9F>譚ゥ蝗ィ讀る勢<E3828B> API驫<49>y遶エ髑ク﨡よ奮豬懷コ、郢倡菅螻シ邁。髀遑<C280>ケ倬ェ樊愀隨夜稔豌ャ辷カ骼サ諢ェ邱オ豬懷利豬帶オ<E5B8B6><EFBDB5><EFBFBD>ョ<EFBFBD> API, 骼オ竄ャ豬<EFBDAC>繝・郛鍋秩裵サ隨臥装菴キ螽<EFBDB7>世繖・蜃。譚ゥ蝗ィ讀る勢<E3828B> API驫<49>z貉ェ轣丞利貎オ髏ィ蜍ォ逍<EFBDAB>頗諡檎ケ<E6AA8E>サ句ャゥ閻<EFBDA9>, 骰咒<E9AAB0>蜈俶オシ豌ャ蝙ケ髣<EFBDB9>e蜃。譚ゥ蝗ィ讀る勢<E3828B> API驫<49></p>
|
||||
<h2>已过时的 API</h2>
|
||||
<p><a href="deprecated-list.html">已过时的 API</a> 页面列出了所有已过时的 API。一般由于进行了改进并且通常提供了替代的 API, 所以建议不要使用已过时的 API。在将来的实现过程中, 可能会删除已过时的 API。</p>
|
||||
</li>
|
||||
<li class="blockList">
|
||||
<h2>扈ア繹<EFBFBD>邏ゥ</h2>
|
||||
<p><a href="index-files/index-1.html">扈ア繹<EFBFBD>邏ゥ</a> 骰門俗諠磯失螟顔透蟋」蠍峨取清蠢泌ク馴穀讌<E7A980>ョ鷹七竄ャ髀亥、瑚「ォ, 骼コ繝・蠖<EFBDA5>, 髀句怯竄ャ迥イ讚<EFBDB2>, 髀りァ<E3828A>。カ骰懷アス逑ァ螽育鳩谿鷹穀讌<E7A980><EFBFBD>恰<EFBFBD></p>
|
||||
<h2>索引</h2>
|
||||
<p><a href="index-files/index-1.html">索引</a> 包含按字母顺序排列的所有类, 接口, 构造器, 方法和字段的列表。</p>
|
||||
</li>
|
||||
<li class="blockList">
|
||||
<h2>豸灘ゥ∫ォエ豸頭/豸灘ャゥ遶エ豸頭</h2>
|
||||
<p>譚ゥ谺守ーコ髢セ轤ャ蟶エ豬」謖主″骰咒<EFBFBD>莠呈撼﨡<EFBFBD>圜豸灘ャゥ遶エ豸軟≦蝙ィ豸灘ゥ∫ォエ豸軟≧陲ォ, 骼コ繝・蠖<EFBDA5>, 扈句ャェ邁ュ骰門属蝙ィ髏ゥ遞ソ蜿ァ讀、逕ク貎ー驫<EFBDB0></p>
|
||||
<h2>上一个/下一个</h2>
|
||||
<p>这些链接使您可以转至下一个或上一个类, 接口, 程序包或相关页面。</p>
|
||||
</li>
|
||||
<li class="blockList">
|
||||
<h2>螯怜利轣ヲ/髀<>患赶矩暑カ</h2>
|
||||
<p>譚ゥ谺守ーコ髢セ轤ャ蟶エ髏「繖、邁ャ髀<EFBFBD>鴬縺夐骨蟯<EFBFBD>ョ」髓<EFBFBD> HTML 螯怜利轣ヲ驫<EFBDA6><E9A9AB>蠅埼処螟舌蛾来繹<E69DA5>貎朱刻髞区ケ<E58CBA>処螟駒萩髀玖キコ諡ー髀<EFBDB0>患赶矩暑譛オ陲ア扈牙カ<E78999>ィ臥サ辜俶沺蟇ョ蠢銀ぎ<E98A80></p>
|
||||
<h2>框架/无框架</h2>
|
||||
<p>这些链接用于显示和隐藏 HTML 框架。所有页面均具有有框架和无框架两种显示方式。</p>
|
||||
</li>
|
||||
<li class="blockList">
|
||||
<h2>骼オ竄ャ髀亥、瑚「ォ</h2>
|
||||
<p><a href="allclasses-noframe.html">骼オ竄ャ髀亥、瑚「ォ</a>髢セ轤ャ蟶エ髀<EFBFBD>鴬縺夐七竄ャ髀亥、瑚「ォ骰懷アセ蟶エ骰劵 (髣<>d邁。髣育ぜ貎、骼ャ菴ク逾オ豼よ・<E38288>「ォ骰ィ<E9AAB0>)驫<></p>
|
||||
<h2>所有类</h2>
|
||||
<p><a href="allclasses-noframe.html">所有类</a>链接显示所有类和接口 (除了非静态嵌套类型)。</p>
|
||||
</li>
|
||||
<li class="blockList">
|
||||
<h2>謳エ蠢灘棯骰匁<EFBFBD>ャ縲<EFBFBD>渚シ</h2>
|
||||
<p>蟋」蠢朱∪骰咒<EFBFBD>邁ュ骰呈・蟇イ骼エ譬ァ蠖イ貔カ譬ュ蜆エ骰匁<EFBFBD>ォ谿醍サォ蟀壼<EFBFBD>髀亥、雁樟謳エ蠢灘棯骰匁<EFBFBD>ァ逑ァ螽磯撥諡ー髀りァ<EFBFBD>。カ髏ィ蜍ョ訒ゥ髀<EFBFBD>コ帚ぎ蛯幟<EFBFBD>豺<EFBFBD>с莨<EFBFBD>オ蠖貞匣髀よ攸逍<EFBFBD>頗諡娯ぎ蜻ョ貉<EFBFBD>世ィ, 髑ー螻ス訒ョ豬」霍ィ謨、 API 髏ィ蜍ォ邏鷹甑謌」竄ャ蜻ュ蝙ッ螽娯с貉∵オ<E288B5>竄ャ豸泌<E8B1B8>「謨、貔カ蜍ゥ竄ャ蛯壽楓扈<E6A593>窶ウ訒ア髑ク﨟<EFBDB8>旭豸軟<E8B1B8>逞<EFBFBD>処螟先他骼コ・, 豬」蝸伜″骰咒<E9AAB0>莠帝稔豌ウ郢<EFBDB3>カ灘ャェ蝙ェ髀ら族邏。髑セ蟲ー蠖<EFBDB0>ァ昴d菫企鹿ッ: 譚樶с蝴ヲ豬<EFBDA6>隶ウ邯肴清蠢灘棯骰匁<E9AAB0>ォ陲ォ, 髏定キコ謔鈴漉譖槫坩扈ォ譏情<E8AD8F>髀<EFBFBD>コ」谿<EFBDA3> "骰呻ケ<E591BB><EFBDB9>骰吝<E9AAB0>讒<EFBFBD>" 髢ョ繖・蝙取カ軟<EFBDB6>谿<EFBFBD> "謳エ蠢灘棯骰匁<E9AAB0>ャ縲<EFBDAC>渚シ"驫<></p>
|
||||
<h2>序列化表格</h2>
|
||||
<p>每个可序列化或可外部化的类都有其序列化字段和方法的说明。此信息对重新实现者有用, 而对使用 API 的开发者则没有什么用处。尽管导航栏中没有链接, 但您可以通过下列方式获取此信息: 转至任何序列化类, 然后单击类说明的 "另请参阅" 部分中的 "序列化表格"。</p>
|
||||
</li>
|
||||
<li class="blockList">
|
||||
<h2>逕ッ謳∝匱轢帶・<EFBFBD><EFBFBD>骰款</h2>
|
||||
<p><a href="constant-values.html">逕ッ謳∝匱轢帶・<EFBFBD><EFBFBD>骰款</a>讀、逕ク貎ー骰呈・蝴ュ豬懷李貎、骼ャ菴ケ貂カ郛∝<EFBFBD>晉透螽磯撥蠑キ骰剰キコ竄ャ隨コ竄ャ<EFBFBD></p>
|
||||
<h2>常量字段值</h2>
|
||||
<p><a href="constant-values.html">常量字段值</a>页面列出了静态最终字段及其值。</p>
|
||||
</li>
|
||||
</ul>
|
||||
<em>蟋昴e蠎憺鵠笊よ档豬<EFBFBD>蝣補ぎ蛯懈弗豬懷コ晏ィ<EFBFBD>世繖ヲ辷」骰漕 doclet 髏「辭ク蝙夐勢<E5A490> API 髀ょ岑縲る恰<E3828B></em></div>
|
||||
<em>此帮助文件适用于使用标准 doclet 生成的 API 文档。</em></div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="迺コ螳<EFBFBD>郢<EFBFBD>オ濶ー蝓<EFBFBD>明轤ャ蟶エ"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="com/iker/gid/package-summary.html">扈句ャェ邁ュ骰妹</a></li>
|
||||
<li>扈ォサ</li>
|
||||
<li>豬」霍ィ謨、</li>
|
||||
<li><a href="com/iker/gid/package-tree.html">髀国</a></li>
|
||||
<li><a href="deprecated-list.html">螳ク闌カ郢<EFBFBD>純カ</a></li>
|
||||
<li><a href="index-files/index-1.html">扈ア繹<EFBFBD>邏ゥ</a></li>
|
||||
<li class="navBarCell1Rev">逕ッ裵シ蟋ェ</li>
|
||||
<li><a href="com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li><a href="com/iker/gid/package-tree.html">树</a></li>
|
||||
<li><a href="deprecated-list.html">已过时</a></li>
|
||||
<li><a href="index-files/index-1.html">索引</a></li>
|
||||
<li class="navBarCell1Rev">帮助</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>豸灘ゥ∫ォエ豸頭</li>
|
||||
<li>豸灘ャゥ遶エ豸頭</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="index.html?help-doc.html" target="_top">螯怜利轣ヲ</a></li>
|
||||
<li><a href="help-doc.html" target="_top">髀<EFBFBD>患赶矩暑カ</a></li>
|
||||
<li><a href="index.html?help-doc.html" target="_top">框架</a></li>
|
||||
<li><a href="help-doc.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="allclasses-noframe.html">骼オ竄ャ髀亥、瑚「ォ</a></li>
|
||||
<li><a href="allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
|
@ -1,50 +1,50 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0) on Fri Dec 02 10:32:23 CST 2011 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
|
||||
<title>C - 绱㈠紩</title>
|
||||
<title>C - 索引</title>
|
||||
<meta name="date" content="2011-12-02">
|
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript"><!--
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="C - 绱㈠紩";
|
||||
parent.document.title="C - 索引";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>鎮ㄧ殑娴忚î<EFBFBD><EFBFBD>é<EFBFBD>£ã„¥å‡¡ç»‚佺敤 JavaScript銆‚</div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li>绫»</li>
|
||||
<li>浣跨敤</li>
|
||||
<li><a href="../com/iker/gid/package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li class="navBarCell1Rev">绱㈠紩</li>
|
||||
<li><a href="../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li><a href="../com/iker/gid/package-tree.html">树</a></li>
|
||||
<li><a href="../deprecated-list.html">已过时</a></li>
|
||||
<li class="navBarCell1Rev">索引</li>
|
||||
<li><a href="../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓å©<EFBFBD>竴涓î<EFBFBD>„瓧姣<EFBFBD></li>
|
||||
<li><a href="index-2.html">涓嬩竴涓î<EFBFBD>„瓧姣<EFBFBD></a></li>
|
||||
<li>上一个字母</li>
|
||||
<li><a href="index-2.html">下一个字母</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../index.html?index-filesindex-1.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="index-1.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../index.html?index-filesindex-1.html" target="_top">框架</a></li>
|
||||
<li><a href="index-1.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -67,37 +67,37 @@
|
||||
</a>
|
||||
<h2 class="title">C</h2>
|
||||
<dl>
|
||||
<dt><a href="../com/iker/gid/package-summary.html">com.iker.gid</a> - 绋嬪ç°é<EFBFBD>–… com.iker.gid</dt>
|
||||
<dt><a href="../com/iker/gid/package-summary.html">com.iker.gid</a> - 程序包 com.iker.gid</dt>
|
||||
<dd> </dd>
|
||||
</dl>
|
||||
<a href="index-1.html">C</a> <a href="index-2.html">G</a> <a href="index-3.html">M</a> <a href="index-4.html">S</a> <a href="index-5.html">T</a> </div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li>绫»</li>
|
||||
<li>浣跨敤</li>
|
||||
<li><a href="../com/iker/gid/package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li class="navBarCell1Rev">绱㈠紩</li>
|
||||
<li><a href="../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li><a href="../com/iker/gid/package-tree.html">树</a></li>
|
||||
<li><a href="../deprecated-list.html">已过时</a></li>
|
||||
<li class="navBarCell1Rev">索引</li>
|
||||
<li><a href="../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓å©<EFBFBD>竴涓î<EFBFBD>„瓧姣<EFBFBD></li>
|
||||
<li><a href="index-2.html">涓嬩竴涓î<EFBFBD>„瓧姣<EFBFBD></a></li>
|
||||
<li>上一个字母</li>
|
||||
<li><a href="index-2.html">下一个字母</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../index.html?index-filesindex-1.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="index-1.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../index.html?index-filesindex-1.html" target="_top">框架</a></li>
|
||||
<li><a href="index-1.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
|
@ -1,50 +1,50 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0) on Fri Dec 02 10:32:23 CST 2011 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
|
||||
<title>G - 绱㈠紩</title>
|
||||
<title>G - 索引</title>
|
||||
<meta name="date" content="2011-12-02">
|
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript"><!--
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="G - 绱㈠紩";
|
||||
parent.document.title="G - 索引";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>鎮ㄧ殑娴忚î<EFBFBD><EFBFBD>é<EFBFBD>£ã„¥å‡¡ç»‚佺敤 JavaScript銆‚</div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li>绫»</li>
|
||||
<li>浣跨敤</li>
|
||||
<li><a href="../com/iker/gid/package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li class="navBarCell1Rev">绱㈠紩</li>
|
||||
<li><a href="../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li><a href="../com/iker/gid/package-tree.html">树</a></li>
|
||||
<li><a href="../deprecated-list.html">已过时</a></li>
|
||||
<li class="navBarCell1Rev">索引</li>
|
||||
<li><a href="../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="index-1.html">涓å©<EFBFBD>竴涓î<EFBFBD>„瓧姣<EFBFBD></a></li>
|
||||
<li><a href="index-3.html">涓嬩竴涓î<EFBFBD>„瓧姣<EFBFBD></a></li>
|
||||
<li><a href="index-1.html">上一个字母</a></li>
|
||||
<li><a href="index-3.html">下一个字母</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../index.html?index-filesindex-2.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="index-2.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../index.html?index-filesindex-2.html" target="_top">框架</a></li>
|
||||
<li><a href="index-2.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -67,113 +67,113 @@
|
||||
</a>
|
||||
<h2 class="title">G</h2>
|
||||
<dl>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientCmdLine.Tokens.html#getInt(java.lang.String)">getInt(String)</a></span> - 绫» æ¶“î… æ®‘é<E28098>‚规硶com.iker.gid.<a href="../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidClientCmdLine.Tokens</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientCmdLine.Tokens.html#getInt(java.lang.String)">getInt(String)</a></span> - 类 中的方法com.iker.gid.<a href="../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gid中的类">GidClientCmdLine.Tokens</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientCmdLine.Tokens.html#getLong(java.lang.String)">getLong(String)</a></span> - 绫» æ¶“î… æ®‘é<E28098>‚规硶com.iker.gid.<a href="../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidClientCmdLine.Tokens</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientCmdLine.Tokens.html#getLong(java.lang.String)">getLong(String)</a></span> - 类 中的方法com.iker.gid.<a href="../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gid中的类">GidClientCmdLine.Tokens</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientCmdLine.Tokens.html#getString(java.lang.String)">getString(String)</a></span> - 绫» æ¶“î… æ®‘é<E28098>‚规硶com.iker.gid.<a href="../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidClientCmdLine.Tokens</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientCmdLine.Tokens.html#getString(java.lang.String)">getString(String)</a></span> - 类 中的方法com.iker.gid.<a href="../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gid中的类">GidClientCmdLine.Tokens</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><a href="../com/iker/gid/GidClient.html" title="com.iker.gidæ¶“î… æ®‘ç»«»"><span class="strong">GidClient</span></a> - <a href="../com/iker/gid/package-summary.html">com.iker.gid</a>æ¶“î… æ®‘ç»«»</dt>
|
||||
<dt><a href="../com/iker/gid/GidClient.html" title="com.iker.gid中的类"><span class="strong">GidClient</span></a> - <a href="../com/iker/gid/package-summary.html">com.iker.gid</a>中的类</dt>
|
||||
<dd>
|
||||
<div class="block">鎶借薄鎺ュ彛</div>
|
||||
<div class="block">抽象接口</div>
|
||||
</dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClient.html#GidClient(java.lang.String, int, java.lang.String)">GidClient(String, int, String)</a></span> - 绫» é<>¨å‹¬ç€¯é–«çŠ²æ«’com.iker.gid.<a href="../com/iker/gid/GidClient.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidClient</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClient.html#GidClient(java.lang.String, int, java.lang.String)">GidClient(String, int, String)</a></span> - 类 的构造器com.iker.gid.<a href="../com/iker/gid/GidClient.html" title="com.iker.gid中的类">GidClient</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><a href="../com/iker/gid/GidClientCmdLine.html" title="com.iker.gidæ¶“î… æ®‘ç»«»"><span class="strong">GidClientCmdLine</span></a> - <a href="../com/iker/gid/package-summary.html">com.iker.gid</a>æ¶“î… æ®‘ç»«»</dt>
|
||||
<dt><a href="../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid中的类"><span class="strong">GidClientCmdLine</span></a> - <a href="../com/iker/gid/package-summary.html">com.iker.gid</a>中的类</dt>
|
||||
<dd>
|
||||
<div class="block">é<EFBFBD>›æˆ’护ç<EFBFBD>›å±¾æŸŸå¯®å¿Žç² GIDé<EFBFBD>ˆå¶…姟é<EFBFBD>£ã„¥å½‡å¯°æ¥€æ•®æ¶“€IDé<EFBFBD>™å‡¤ç´<EFBFBD>é<EFBFBD>„æƒ<EFBFBD>æ<EFBFBD>´æ—‡î‡šæµ£è·¨æ•¤ç’‡ãƒ¦æŸŸå¯®å¿“彇寰楀敮涓€IDé<EFBFBD>™å‡¤ç´<EFBFBD>
|
||||
æ<EFBFBD>´æ—‡î‡šé<EFBFBD>™æ §å–…浜庢湇é<EFBFBD>”″櫒é<EFBFBD>¨å‹¯åŽ¤ç¼ƒî‡€â‚¬å¤<EFBFBD>ã€<EFBFBD></div>
|
||||
<div class="block">命令行方式从GID服务器取得唯一ID号,是否应该使用该方式取得唯一ID号,
|
||||
应该取决于服务器的配置选项</div>
|
||||
</dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientCmdLine.html#GidClientCmdLine(java.lang.String, int, java.lang.String)">GidClientCmdLine(String, int, String)</a></span> - 绫» é<>¨å‹¬ç€¯é–«çŠ²æ«’com.iker.gid.<a href="../com/iker/gid/GidClientCmdLine.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidClientCmdLine</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientCmdLine.html#GidClientCmdLine(java.lang.String, int, java.lang.String)">GidClientCmdLine(String, int, String)</a></span> - 类 的构造器com.iker.gid.<a href="../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid中的类">GidClientCmdLine</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><a href="../com/iker/gid/GidClientCmdLine.NameValue.html" title="com.iker.gidæ¶“î… æ®‘ç»«»"><span class="strong">GidClientCmdLine.NameValue</span></a> - <a href="../com/iker/gid/package-summary.html">com.iker.gid</a>æ¶“î… æ®‘ç»«»</dt>
|
||||
<dt><a href="../com/iker/gid/GidClientCmdLine.NameValue.html" title="com.iker.gid中的类"><span class="strong">GidClientCmdLine.NameValue</span></a> - <a href="../com/iker/gid/package-summary.html">com.iker.gid</a>中的类</dt>
|
||||
<dd>
|
||||
<div class="block">name-value 瀵åœè¢«é<EFBFBD>¨å¬¬è¢«</div>
|
||||
<div class="block">name-value 对类型类</div>
|
||||
</dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientCmdLine.NameValue.html#GidClientCmdLine.NameValue(java.lang.String, java.lang.String)">GidClientCmdLine.NameValue(String, String)</a></span> - 绫» é<>¨å‹¬ç€¯é–«çŠ²æ«’com.iker.gid.<a href="../com/iker/gid/GidClientCmdLine.NameValue.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidClientCmdLine.NameValue</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientCmdLine.NameValue.html#GidClientCmdLine.NameValue(java.lang.String, java.lang.String)">GidClientCmdLine.NameValue(String, String)</a></span> - 类 的构造器com.iker.gid.<a href="../com/iker/gid/GidClientCmdLine.NameValue.html" title="com.iker.gid中的类">GidClientCmdLine.NameValue</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><a href="../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gidæ¶“î… æ®‘ç»«»"><span class="strong">GidClientCmdLine.Tokens</span></a> - <a href="../com/iker/gid/package-summary.html">com.iker.gid</a>æ¶“î… æ®‘ç»«»</dt>
|
||||
<dt><a href="../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gid中的类"><span class="strong">GidClientCmdLine.Tokens</span></a> - <a href="../com/iker/gid/package-summary.html">com.iker.gid</a>中的类</dt>
|
||||
<dd>
|
||||
<div class="block">鎷嗗垎瀛楃îƒ<EFBFBD>涓茬殑绫伙ç´<EFBFBD>璇ョ被ç<EFBFBD><EFBFBD>å—<EFBFBD>€滃悕é<EFBFBD>Šå°–€濆æ<EFBFBD>©æ¶œî”‘鎷嗗垎锛屾暟鎹牸寮忎负锛š
|
||||
<div class="block">拆分字符串的类,该类将“名值”对进行拆分,数据格式为:
|
||||
name1^value1|name2^value2|...</div>
|
||||
</dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientCmdLine.Tokens.html#GidClientCmdLine.Tokens(java.lang.String)">GidClientCmdLine.Tokens(String)</a></span> - 绫» é<>¨å‹¬ç€¯é–«çŠ²æ«’com.iker.gid.<a href="../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidClientCmdLine.Tokens</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientCmdLine.Tokens.html#GidClientCmdLine.Tokens(java.lang.String)">GidClientCmdLine.Tokens(String)</a></span> - 类 的构造器com.iker.gid.<a href="../com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gid中的类">GidClientCmdLine.Tokens</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><a href="../com/iker/gid/GidClientJson.html" title="com.iker.gidæ¶“î… æ®‘ç»«»"><span class="strong">GidClientJson</span></a> - <a href="../com/iker/gid/package-summary.html">com.iker.gid</a>æ¶“î… æ®‘ç»«»</dt>
|
||||
<dt><a href="../com/iker/gid/GidClientJson.html" title="com.iker.gid中的类"><span class="strong">GidClientJson</span></a> - <a href="../com/iker/gid/package-summary.html">com.iker.gid</a>中的类</dt>
|
||||
<dd>
|
||||
<div class="block">鎸‰ JSON é<><C3A9>版åµ<C3A5>é<EFBFBD><C3A9>煎紡鑾峰緱GID锛岃嫢瑕佷娇é<E280A1>¢ã„¦î„<C3AE>é<EFBFBD>‚ç‘°ç´¡é<C2A1>™æ §ç·±é<C2B1>žîˆ™ç«´ID锛屽垯é<C2AF>ˆå¶…姟é<C5B8>£¨
|
||||
蹇呴ã€<EFBFBD>é<EFBFBD>„惎é<EFBFBD>¢ã„¤ç°¡HTTPé<EFBFBD>—忚ç’<EFBFBD>å<EFBFBD>—棶é<EFBFBD>‚ç‘°ç´¡</div>
|
||||
<div class="block">按 JSON 数据格式获得GID,若要使用此方式取得唯一ID,则服务器
|
||||
必须是启用了HTTP协议访问方式</div>
|
||||
</dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientJson.html#GidClientJson(java.lang.String, int, java.lang.String)">GidClientJson(String, int, String)</a></span> - 绫» é<>¨å‹¬ç€¯é–«çŠ²æ«’com.iker.gid.<a href="../com/iker/gid/GidClientJson.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidClientJson</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientJson.html#GidClientJson(java.lang.String, int, java.lang.String)">GidClientJson(String, int, String)</a></span> - 类 的构造器com.iker.gid.<a href="../com/iker/gid/GidClientJson.html" title="com.iker.gid中的类">GidClientJson</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><a href="../com/iker/gid/GidClientXml.html" title="com.iker.gidæ¶“î… æ®‘ç»«»"><span class="strong">GidClientXml</span></a> - <a href="../com/iker/gid/package-summary.html">com.iker.gid</a>æ¶“î… æ®‘ç»«»</dt>
|
||||
<dt><a href="../com/iker/gid/GidClientXml.html" title="com.iker.gid中的类"><span class="strong">GidClientXml</span></a> - <a href="../com/iker/gid/package-summary.html">com.iker.gid</a>中的类</dt>
|
||||
<dd>
|
||||
<div class="block">鎸塜MLé<EFBFBD><EFBFBD>煎紡鑾峰緱GIDé<EFBFBD><EFBFBD>版åµ<EFBFBD>锛岃嫢瑕佷娇é<EFBFBD>¢ã„¦î„<EFBFBD>é<EFBFBD>‚ç‘°ç´¡é<EFBFBD>™æ §ç·±é<EFBFBD>žîˆ™ç«´ID锛屽垯é<EFBFBD>ˆå¶…姟é<EFBFBD>£¨
|
||||
蹇呴ã€<EFBFBD>é<EFBFBD>„惎é<EFBFBD>¢ã„¤ç°¡HTTPé<EFBFBD>—忚ç’<EFBFBD>å<EFBFBD>—棶é<EFBFBD>‚ç‘°ç´¡</div>
|
||||
<div class="block">按XML格式获得GID数据,若要使用此方式取得唯一ID,则服务器
|
||||
必须是启用了HTTP协议访问方式</div>
|
||||
</dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientXml.html#GidClientXml(java.lang.String, int, java.lang.String)">GidClientXml(String, int, String)</a></span> - 绫» é<>¨å‹¬ç€¯é–«çŠ²æ«’com.iker.gid.<a href="../com/iker/gid/GidClientXml.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidClientXml</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientXml.html#GidClientXml(java.lang.String, int, java.lang.String)">GidClientXml(String, int, String)</a></span> - 类 的构造器com.iker.gid.<a href="../com/iker/gid/GidClientXml.html" title="com.iker.gid中的类">GidClientXml</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidStatus.html#gidErrConn">gidErrConn</a></span> - 绫» æ¶“î… æ®‘é—ˆæ¬<C3A6>€佸彉閲廲om.iker.gid.<a href="../com/iker/gid/GidStatus.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidStatus</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidStatus.html#gidErrConn">gidErrConn</a></span> - 类 中的静态变量com.iker.gid.<a href="../com/iker/gid/GidStatus.html" title="com.iker.gid中的类">GidStatus</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidStatus.html#gidErrInit">gidErrInit</a></span> - 绫» æ¶“î… æ®‘é—ˆæ¬<C3A6>€佸彉閲廲om.iker.gid.<a href="../com/iker/gid/GidStatus.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidStatus</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidStatus.html#gidErrInit">gidErrInit</a></span> - 类 中的静态变量com.iker.gid.<a href="../com/iker/gid/GidStatus.html" title="com.iker.gid中的类">GidStatus</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidStatus.html#gidErrIo">gidErrIo</a></span> - 绫» æ¶“î… æ®‘é—ˆæ¬<C3A6>€佸彉閲廲om.iker.gid.<a href="../com/iker/gid/GidStatus.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidStatus</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidStatus.html#gidErrIo">gidErrIo</a></span> - 类 中的静态变量com.iker.gid.<a href="../com/iker/gid/GidStatus.html" title="com.iker.gid中的类">GidStatus</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidStatus.html#gidErrOverride">gidErrOverride</a></span> - 绫» æ¶“î… æ®‘é—ˆæ¬<C3A6>€佸彉閲廲om.iker.gid.<a href="../com/iker/gid/GidStatus.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidStatus</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidStatus.html#gidErrOverride">gidErrOverride</a></span> - 类 中的静态变量com.iker.gid.<a href="../com/iker/gid/GidStatus.html" title="com.iker.gid中的类">GidStatus</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidStatus.html#gidErrProto">gidErrProto</a></span> - 绫» æ¶“î… æ®‘é—ˆæ¬<C3A6>€佸彉閲廲om.iker.gid.<a href="../com/iker/gid/GidStatus.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidStatus</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidStatus.html#gidErrProto">gidErrProto</a></span> - 类 中的静态变量com.iker.gid.<a href="../com/iker/gid/GidStatus.html" title="com.iker.gid中的类">GidStatus</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidStatus.html#gidErrSave">gidErrSave</a></span> - 绫» æ¶“î… æ®‘é—ˆæ¬<C3A6>€佸彉閲廲om.iker.gid.<a href="../com/iker/gid/GidStatus.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidStatus</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidStatus.html#gidErrSave">gidErrSave</a></span> - 类 中的静态变量com.iker.gid.<a href="../com/iker/gid/GidStatus.html" title="com.iker.gid中的类">GidStatus</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidStatus.html#gidErrServer">gidErrServer</a></span> - 绫» æ¶“î… æ®‘é—ˆæ¬<C3A6>€佸彉閲廲om.iker.gid.<a href="../com/iker/gid/GidStatus.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidStatus</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidStatus.html#gidErrServer">gidErrServer</a></span> - 类 中的静态变量com.iker.gid.<a href="../com/iker/gid/GidStatus.html" title="com.iker.gid中的类">GidStatus</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidStatus.html#gidErrSid">gidErrSid</a></span> - 绫» æ¶“î… æ®‘é—ˆæ¬<C3A6>€佸彉閲廲om.iker.gid.<a href="../com/iker/gid/GidStatus.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidStatus</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidStatus.html#gidErrSid">gidErrSid</a></span> - 类 中的静态变量com.iker.gid.<a href="../com/iker/gid/GidStatus.html" title="com.iker.gid中的类">GidStatus</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClient.html#gidNext()">gidNext()</a></span> - 绫» æ¶“î… æ®‘é<E28098>‚规硶com.iker.gid.<a href="../com/iker/gid/GidClient.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidClient</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClient.html#gidNext()">gidNext()</a></span> - 类 中的方法com.iker.gid.<a href="../com/iker/gid/GidClient.html" title="com.iker.gid中的类">GidClient</a></dt>
|
||||
<dd>
|
||||
<div class="block">鑾峰緱涓嬩竴涓î<EFBFBD>„敮涓€IDé<EFBFBD>™·</div>
|
||||
<div class="block">获得下一个唯一ID号</div>
|
||||
</dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientCmdLine.html#gidNext()">gidNext()</a></span> - 绫» æ¶“î… æ®‘é<E28098>‚规硶com.iker.gid.<a href="../com/iker/gid/GidClientCmdLine.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidClientCmdLine</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientCmdLine.html#gidNext()">gidNext()</a></span> - 类 中的方法com.iker.gid.<a href="../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid中的类">GidClientCmdLine</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientJson.html#gidNext()">gidNext()</a></span> - 绫» æ¶“î… æ®‘é<E28098>‚规硶com.iker.gid.<a href="../com/iker/gid/GidClientJson.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidClientJson</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientJson.html#gidNext()">gidNext()</a></span> - 类 中的方法com.iker.gid.<a href="../com/iker/gid/GidClientJson.html" title="com.iker.gid中的类">GidClientJson</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientXml.html#gidNext()">gidNext()</a></span> - 绫» æ¶“î… æ®‘é<E28098>‚规硶com.iker.gid.<a href="../com/iker/gid/GidClientXml.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidClientXml</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientXml.html#gidNext()">gidNext()</a></span> - 类 中的方法com.iker.gid.<a href="../com/iker/gid/GidClientXml.html" title="com.iker.gid中的类">GidClientXml</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidStatus.html#gidOk">gidOk</a></span> - 绫» æ¶“î… æ®‘é—ˆæ¬<C3A6>€佸彉閲廲om.iker.gid.<a href="../com/iker/gid/GidStatus.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidStatus</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidStatus.html#gidOk">gidOk</a></span> - 类 中的静态变量com.iker.gid.<a href="../com/iker/gid/GidStatus.html" title="com.iker.gid中的类">GidStatus</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><a href="../com/iker/gid/GidStatus.html" title="com.iker.gidæ¶“î… æ®‘ç»«»"><span class="strong">GidStatus</span></a> - <a href="../com/iker/gid/package-summary.html">com.iker.gid</a>æ¶“î… æ®‘ç»«»</dt>
|
||||
<dt><a href="../com/iker/gid/GidStatus.html" title="com.iker.gid中的类"><span class="strong">GidStatus</span></a> - <a href="../com/iker/gid/package-summary.html">com.iker.gid</a>中的类</dt>
|
||||
<dd> </dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidStatus.html#GidStatus()">GidStatus()</a></span> - 绫» é<>¨å‹¬ç€¯é–«çŠ²æ«’com.iker.gid.<a href="../com/iker/gid/GidStatus.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidStatus</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidStatus.html#GidStatus()">GidStatus()</a></span> - 类 的构造器com.iker.gid.<a href="../com/iker/gid/GidStatus.html" title="com.iker.gid中的类">GidStatus</a></dt>
|
||||
<dd> </dd>
|
||||
</dl>
|
||||
<a href="index-1.html">C</a> <a href="index-2.html">G</a> <a href="index-3.html">M</a> <a href="index-4.html">S</a> <a href="index-5.html">T</a> </div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li>绫»</li>
|
||||
<li>浣跨敤</li>
|
||||
<li><a href="../com/iker/gid/package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li class="navBarCell1Rev">绱㈠紩</li>
|
||||
<li><a href="../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li><a href="../com/iker/gid/package-tree.html">树</a></li>
|
||||
<li><a href="../deprecated-list.html">已过时</a></li>
|
||||
<li class="navBarCell1Rev">索引</li>
|
||||
<li><a href="../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="index-1.html">涓å©<EFBFBD>竴涓î<EFBFBD>„瓧姣<EFBFBD></a></li>
|
||||
<li><a href="index-3.html">涓嬩竴涓î<EFBFBD>„瓧姣<EFBFBD></a></li>
|
||||
<li><a href="index-1.html">上一个字母</a></li>
|
||||
<li><a href="index-3.html">下一个字母</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../index.html?index-filesindex-2.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="index-2.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../index.html?index-filesindex-2.html" target="_top">框架</a></li>
|
||||
<li><a href="index-2.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
|
@ -1,50 +1,50 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0) on Fri Dec 02 10:32:23 CST 2011 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
|
||||
<title>M - 绱㈠紩</title>
|
||||
<title>M - 索引</title>
|
||||
<meta name="date" content="2011-12-02">
|
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript"><!--
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="M - 绱㈠紩";
|
||||
parent.document.title="M - 索引";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>鎮ㄧ殑娴忚î<EFBFBD><EFBFBD>é<EFBFBD>£ã„¥å‡¡ç»‚佺敤 JavaScript銆‚</div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li>绫»</li>
|
||||
<li>浣跨敤</li>
|
||||
<li><a href="../com/iker/gid/package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li class="navBarCell1Rev">绱㈠紩</li>
|
||||
<li><a href="../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li><a href="../com/iker/gid/package-tree.html">树</a></li>
|
||||
<li><a href="../deprecated-list.html">已过时</a></li>
|
||||
<li class="navBarCell1Rev">索引</li>
|
||||
<li><a href="../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="index-2.html">涓å©<EFBFBD>竴涓î<EFBFBD>„瓧姣<EFBFBD></a></li>
|
||||
<li><a href="index-4.html">涓嬩竴涓î<EFBFBD>„瓧姣<EFBFBD></a></li>
|
||||
<li><a href="index-2.html">上一个字母</a></li>
|
||||
<li><a href="index-4.html">下一个字母</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../index.html?index-filesindex-3.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="index-3.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../index.html?index-filesindex-3.html" target="_top">框架</a></li>
|
||||
<li><a href="index-3.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -67,41 +67,41 @@
|
||||
</a>
|
||||
<h2 class="title">M</h2>
|
||||
<dl>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientCmdLine.html#main(java.lang.String[])">main(String[])</a></span> - 绫» æ¶“î… æ®‘é—ˆæ¬<C3A6>€佹柟娉昪om.iker.gid.<a href="../com/iker/gid/GidClientCmdLine.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidClientCmdLine</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientCmdLine.html#main(java.lang.String[])">main(String[])</a></span> - 类 中的静态方法com.iker.gid.<a href="../com/iker/gid/GidClientCmdLine.html" title="com.iker.gid中的类">GidClientCmdLine</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientJson.html#main(java.lang.String[])">main(String[])</a></span> - 绫» æ¶“î… æ®‘é—ˆæ¬<C3A6>€佹柟娉昪om.iker.gid.<a href="../com/iker/gid/GidClientJson.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidClientJson</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientJson.html#main(java.lang.String[])">main(String[])</a></span> - 类 中的静态方法com.iker.gid.<a href="../com/iker/gid/GidClientJson.html" title="com.iker.gid中的类">GidClientJson</a></dt>
|
||||
<dd> </dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientXml.html#main(java.lang.String[])">main(String[])</a></span> - 绫» æ¶“î… æ®‘é—ˆæ¬<C3A6>€佹柟娉昪om.iker.gid.<a href="../com/iker/gid/GidClientXml.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidClientXml</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClientXml.html#main(java.lang.String[])">main(String[])</a></span> - 类 中的静态方法com.iker.gid.<a href="../com/iker/gid/GidClientXml.html" title="com.iker.gid中的类">GidClientXml</a></dt>
|
||||
<dd> </dd>
|
||||
</dl>
|
||||
<a href="index-1.html">C</a> <a href="index-2.html">G</a> <a href="index-3.html">M</a> <a href="index-4.html">S</a> <a href="index-5.html">T</a> </div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li>绫»</li>
|
||||
<li>浣跨敤</li>
|
||||
<li><a href="../com/iker/gid/package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li class="navBarCell1Rev">绱㈠紩</li>
|
||||
<li><a href="../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li><a href="../com/iker/gid/package-tree.html">树</a></li>
|
||||
<li><a href="../deprecated-list.html">已过时</a></li>
|
||||
<li class="navBarCell1Rev">索引</li>
|
||||
<li><a href="../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="index-2.html">涓å©<EFBFBD>竴涓î<EFBFBD>„瓧姣<EFBFBD></a></li>
|
||||
<li><a href="index-4.html">涓嬩竴涓î<EFBFBD>„瓧姣<EFBFBD></a></li>
|
||||
<li><a href="index-2.html">上一个字母</a></li>
|
||||
<li><a href="index-4.html">下一个字母</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../index.html?index-filesindex-3.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="index-3.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../index.html?index-filesindex-3.html" target="_top">框架</a></li>
|
||||
<li><a href="index-3.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
|
@ -1,50 +1,50 @@
|
||||
<EFBFBD>ソ<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0) on Fri Dec 02 10:32:23 CST 2011 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
|
||||
<title>S - 扈ア繹<EFBFBD>邏ゥ</title>
|
||||
<title>S - 索引</title>
|
||||
<meta name="date" content="2011-12-02">
|
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript"><!--
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="S - 扈ア繹<EFBFBD>邏ゥ";
|
||||
parent.document.title="S - 索引";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>骼ョ繖ァ谿大ィエ蠢夭搓骰」繖・蜃。扈ゆスコ謨、 JavaScript驫<74></div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="迺コ螳<EFBFBD>郢<EFBFBD>オ濶ー蝓<EFBFBD>明轤ャ蟶エ"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../com/iker/gid/package-summary.html">扈句ャェ邁ュ骰妹</a></li>
|
||||
<li>扈ォサ</li>
|
||||
<li>豬」霍ィ謨、</li>
|
||||
<li><a href="../com/iker/gid/package-tree.html">髀国</a></li>
|
||||
<li><a href="../deprecated-list.html">螳ク闌カ郢<EFBFBD>純カ</a></li>
|
||||
<li class="navBarCell1Rev">扈ア繹<EFBFBD>邏ゥ</li>
|
||||
<li><a href="../help-doc.html">逕ッ裵シ蟋ェ</a></li>
|
||||
<li><a href="../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li><a href="../com/iker/gid/package-tree.html">树</a></li>
|
||||
<li><a href="../deprecated-list.html">已过时</a></li>
|
||||
<li class="navBarCell1Rev">索引</li>
|
||||
<li><a href="../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="index-3.html">豸灘ゥ∫ォエ豸軟>逑ァ蟋」<EFBFBD></a></li>
|
||||
<li><a href="index-5.html">豸灘ャゥ遶エ豸軟>逑ァ蟋」<EFBFBD></a></li>
|
||||
<li><a href="index-3.html">上一个字母</a></li>
|
||||
<li><a href="index-5.html">下一个字母</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../index.html?index-filesindex-4.html" target="_top">螯怜利轣ヲ</a></li>
|
||||
<li><a href="index-4.html" target="_top">髀<EFBFBD>患赶矩暑カ</a></li>
|
||||
<li><a href="../index.html?index-filesindex-4.html" target="_top">框架</a></li>
|
||||
<li><a href="index-4.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../allclasses-noframe.html">骼オ竄ャ髀亥、瑚「ォ</a></li>
|
||||
<li><a href="../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -67,43 +67,43 @@
|
||||
</a>
|
||||
<h2 class="title">S</h2>
|
||||
<dl>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClient.html#setConnectTimeout(int)">setConnectTimeout(int)</a></span> - 扈ォサ 豸軟<E8B1B8>谿鷹盾隗<E79BBE>。カcom.iker.gid.<a href="../com/iker/gid/GidClient.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClient</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClient.html#setConnectTimeout(int)">setConnectTimeout(int)</a></span> - 类 中的方法com.iker.gid.<a href="../com/iker/gid/GidClient.html" title="com.iker.gid中的类">GidClient</a></dt>
|
||||
<dd>
|
||||
<div class="block">迺∝鴬逍<EFBFBD>シ∵サ<EFBFBD>ケ幃室繝ヲ讀る翌エ</div>
|
||||
<div class="block">设置络连接时间</div>
|
||||
</dd>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClient.html#setRdTimeout(int)">setRdTimeout(int)</a></span> - 扈ォサ 豸軟<E8B1B8>谿鷹盾隗<E79BBE>。カcom.iker.gid.<a href="../com/iker/gid/GidClient.html" title="com.iker.gid豸軟<EFBFBD>谿醍サォサ">GidClient</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidClient.html#setRdTimeout(int)">setRdTimeout(int)</a></span> - 类 中的方法com.iker.gid.<a href="../com/iker/gid/GidClient.html" title="com.iker.gid中的类">GidClient</a></dt>
|
||||
<dd>
|
||||
<div class="block">迺∝鴬逍<EFBFBD>O迺<EFBFBD><EFBFBD>遘エ髀<EFBFBD>扱讀る翌エ</div>
|
||||
<div class="block">设置IO读超时时间</div>
|
||||
</dd>
|
||||
</dl>
|
||||
<a href="index-1.html">C</a> <a href="index-2.html">G</a> <a href="index-3.html">M</a> <a href="index-4.html">S</a> <a href="index-5.html">T</a> </div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="迺コ螳<EFBFBD>郢<EFBFBD>オ濶ー蝓<EFBFBD>明轤ャ蟶エ"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../com/iker/gid/package-summary.html">扈句ャェ邁ュ骰妹</a></li>
|
||||
<li>扈ォサ</li>
|
||||
<li>豬」霍ィ謨、</li>
|
||||
<li><a href="../com/iker/gid/package-tree.html">髀国</a></li>
|
||||
<li><a href="../deprecated-list.html">螳ク闌カ郢<EFBFBD>純カ</a></li>
|
||||
<li class="navBarCell1Rev">扈ア繹<EFBFBD>邏ゥ</li>
|
||||
<li><a href="../help-doc.html">逕ッ裵シ蟋ェ</a></li>
|
||||
<li><a href="../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li><a href="../com/iker/gid/package-tree.html">树</a></li>
|
||||
<li><a href="../deprecated-list.html">已过时</a></li>
|
||||
<li class="navBarCell1Rev">索引</li>
|
||||
<li><a href="../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="index-3.html">豸灘ゥ∫ォエ豸軟>逑ァ蟋」<EFBFBD></a></li>
|
||||
<li><a href="index-5.html">豸灘ャゥ遶エ豸軟>逑ァ蟋」<EFBFBD></a></li>
|
||||
<li><a href="index-3.html">上一个字母</a></li>
|
||||
<li><a href="index-5.html">下一个字母</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../index.html?index-filesindex-4.html" target="_top">螯怜利轣ヲ</a></li>
|
||||
<li><a href="index-4.html" target="_top">髀<EFBFBD>患赶矩暑カ</a></li>
|
||||
<li><a href="../index.html?index-filesindex-4.html" target="_top">框架</a></li>
|
||||
<li><a href="index-4.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../allclasses-noframe.html">骼オ竄ャ髀亥、瑚「ォ</a></li>
|
||||
<li><a href="../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
|
@ -1,50 +1,50 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0) on Fri Dec 02 10:32:23 CST 2011 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
|
||||
<title>T - 绱㈠紩</title>
|
||||
<title>T - 索引</title>
|
||||
<meta name="date" content="2011-12-02">
|
||||
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript"><!--
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="T - 绱㈠紩";
|
||||
parent.document.title="T - 索引";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>鎮ㄧ殑娴忚î<EFBFBD><EFBFBD>é<EFBFBD>£ã„¥å‡¡ç»‚佺敤 JavaScript銆‚</div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li>绫»</li>
|
||||
<li>浣跨敤</li>
|
||||
<li><a href="../com/iker/gid/package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li class="navBarCell1Rev">绱㈠紩</li>
|
||||
<li><a href="../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li><a href="../com/iker/gid/package-tree.html">树</a></li>
|
||||
<li><a href="../deprecated-list.html">已过时</a></li>
|
||||
<li class="navBarCell1Rev">索引</li>
|
||||
<li><a href="../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="index-4.html">涓å©<EFBFBD>竴涓î<EFBFBD>„瓧姣<EFBFBD></a></li>
|
||||
<li>涓嬩竴涓î<EFBFBD>„瓧姣<EFBFBD></li>
|
||||
<li><a href="index-4.html">上一个字母</a></li>
|
||||
<li>下一个字母</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../index.html?index-filesindex-5.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="index-5.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../index.html?index-filesindex-5.html" target="_top">框架</a></li>
|
||||
<li><a href="index-5.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -67,39 +67,39 @@
|
||||
</a>
|
||||
<h2 class="title">T</h2>
|
||||
<dl>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidStatus.html#toString(int)">toString(int)</a></span> - 绫» æ¶“î… æ®‘é—ˆæ¬<C3A6>€佹柟娉昪om.iker.gid.<a href="../com/iker/gid/GidStatus.html" title="com.iker.gidæ¶“î… æ®‘ç»«»">GidStatus</a></dt>
|
||||
<dt><span class="strong"><a href="../com/iker/gid/GidStatus.html#toString(int)">toString(int)</a></span> - 类 中的静态方法com.iker.gid.<a href="../com/iker/gid/GidStatus.html" title="com.iker.gid中的类">GidStatus</a></dt>
|
||||
<dd>
|
||||
<div class="block">ç<EFBFBD><EFBFBD>嗛敊璇彿æ<EFBFBD>žîƒ¿è´Ÿç€›æ¥ƒîƒ<EFBFBD>涓å<EFBFBD>‰å¼¿æ<EFBFBD>©é¢<EFBFBD>俊鎯</div>
|
||||
<div class="block">将错误号转为字符串描述信息</div>
|
||||
</dd>
|
||||
</dl>
|
||||
<a href="index-1.html">C</a> <a href="index-2.html">G</a> <a href="index-3.html">M</a> <a href="index-4.html">S</a> <a href="index-5.html">T</a> </div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="../com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li>绫»</li>
|
||||
<li>浣跨敤</li>
|
||||
<li><a href="../com/iker/gid/package-tree.html">é<EFBFBD><EFBFBD>‘</a></li>
|
||||
<li><a href="../deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li class="navBarCell1Rev">绱㈠紩</li>
|
||||
<li><a href="../help-doc.html">甯姪</a></li>
|
||||
<li><a href="../com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li><a href="../com/iker/gid/package-tree.html">树</a></li>
|
||||
<li><a href="../deprecated-list.html">已过时</a></li>
|
||||
<li class="navBarCell1Rev">索引</li>
|
||||
<li><a href="../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="index-4.html">涓å©<EFBFBD>竴涓î<EFBFBD>„瓧姣<EFBFBD></a></li>
|
||||
<li>涓嬩竴涓î<EFBFBD>„瓧姣<EFBFBD></li>
|
||||
<li><a href="index-4.html">上一个字母</a></li>
|
||||
<li>下一个字母</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../index.html?index-filesindex-5.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="index-5.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="../index.html?index-filesindex-5.html" target="_top">框架</a></li>
|
||||
<li><a href="index-5.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="../allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
|
@ -1,10 +1,10 @@
|
||||
锘<EFBFBD><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc on Fri Dec 02 10:32:23 CST 2011 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
|
||||
<title>閻㈢喐鍨氶惃鍕<EFBFBD>瀮濡棧 (閺冪姵鐖f0<EFBD86>)</title>
|
||||
<title>生成的文档 (无标题)</title>
|
||||
<script type="text/javascript">
|
||||
targetPage = "" + window.location.search;
|
||||
if (targetPage != "" && targetPage != "undefined")
|
||||
@ -18,14 +18,14 @@
|
||||
</script>
|
||||
</head>
|
||||
<frameset cols="20%,80%" title="Documentation frame" onload="top.loadFrames()">
|
||||
<frame src="allclasses-frame.html" name="packageFrame" title="閹碘偓閺堝<EFBFBD>琚<EFBFBD>崪灞惧复閸櫍 (闂勩倓绨¢棃鐐烘饯閹<E9A5AF>礁绁垫總妤冭<E5A6A4>閸▼)">
|
||||
<frame src="com/iker/gid/package-summary.html" name="classFrame" title="缁嬪<EFBFBD>绨<EFBFBD>崠<EFBFBD>, 缁<><E7BC81>鎷伴幒銉ュ經鐠囧瓨妲<E793A8>" scrolling="yes">
|
||||
<frame src="allclasses-frame.html" name="packageFrame" title="所有类和接口 (除了非静态嵌套类型)">
|
||||
<frame src="com/iker/gid/package-summary.html" name="classFrame" title="程序包, 类和接口说明" scrolling="yes">
|
||||
<noframes>
|
||||
<noscript>
|
||||
<div>閹<EFBFBD>劎娈戝ù蹇氼潔閸c劌鍑$粋浣烘暏 JavaScript閵唫</div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<h2>濡楀棙鐏︽0鍕<EFBFBD>劅</h2>
|
||||
<p>鐠囪渹濞囬悽銊︻攱閺嬭泛濮涢懗鑺ョ叀閻<EFBFBD><EFBFBD>顒濋弬鍥ㄣ€傞妴鍌氼洤閺嬫粎婀呴崚鐗堫劃濞戝牊浼<EFBFBD>, 閸掓瑨銆冮弰搴㈠亶娴h法鏁ら惃鍕<E68383>Ц娑撳秵鏁<E7A7B5>幐浣诡攱閺嬪墎娈<E5A28E> Web 鐎广垺鍩涢張鎭掆偓鍌炴懠閹恒儱鍩<E584B1><a href="com/iker/gid/package-summary.html">闂堢偞顢嬮弸鍓佸<EFBFBD>閺埇</a>閵唫</p>
|
||||
<h2>框架预警</h2>
|
||||
<p>请使用框架功能查看此文档。如果看到此消息, 则表明您使用的是不支持框架的 Web 客户机。链接到<a href="com/iker/gid/package-summary.html">非框架版本</a>。</p>
|
||||
</noframes>
|
||||
</frameset>
|
||||
</html>
|
||||
|
@ -1,50 +1,50 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0) on Fri Dec 02 10:32:23 CST 2011 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
|
||||
<title>绫诲垎ç<EFBFBD>žå‚œç²¨é<EFBFBD>‹„</title>
|
||||
<title>类分层结构</title>
|
||||
<meta name="date" content="2011-12-02">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript"><!--
|
||||
if (location.href.indexOf('is-external=true') == -1) {
|
||||
parent.document.title="绫诲垎ç<EFBFBD>žå‚œç²¨é<EFBFBD>‹„";
|
||||
parent.document.title="类分层结构";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>鎮ㄧ殑娴忚î<EFBFBD><EFBFBD>é<EFBFBD>£ã„¥å‡¡ç»‚佺敤 JavaScript銆‚</div>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_top_firstrow">
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li>绫»</li>
|
||||
<li>浣跨敤</li>
|
||||
<li class="navBarCell1Rev">é<EFBFBD><EFBFBD>‘</li>
|
||||
<li><a href="deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li><a href="index-files/index-1.html">绱㈠紩</a></li>
|
||||
<li><a href="help-doc.html">甯姪</a></li>
|
||||
<li><a href="com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li class="navBarCell1Rev">树</li>
|
||||
<li><a href="deprecated-list.html">已过时</a></li>
|
||||
<li><a href="index-files/index-1.html">索引</a></li>
|
||||
<li><a href="help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓å©<EFBFBD>竴涓ª</li>
|
||||
<li>涓嬩竴涓ª</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="index.html?overview-tree.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="overview-tree.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="index.html?overview-tree.html" target="_top">框架</a></li>
|
||||
<li><a href="overview-tree.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
@ -63,27 +63,27 @@
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h1 class="title">鎵€é<EFBFBD>ˆå¤Œâ–¼æ<EFBFBD>´å¿“寘é<EFBFBD>¨å‹«åžŽç<EFBFBD>žå‚œç²¨é<EFBFBD>‹„</h1>
|
||||
<span class="strong">绋嬪ç°é<EFBFBD>–å‘垎ç<EFBFBD>žå‚œç²¨é<EFBFBD>‹„:</span>
|
||||
<h1 class="title">所有程序包的分层结构</h1>
|
||||
<span class="strong">程序包分层结构:</span>
|
||||
<ul class="horizontal">
|
||||
<li><a href="com/iker/gid/package-tree.html">com.iker.gid</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<h2 title="绫诲垎ç<EFBFBD>žå‚œç²¨é<EFBFBD>‹„">绫诲垎ç<EFBFBD>žå‚œç²¨é<EFBFBD>‹„</h2>
|
||||
<h2 title="类分层结构">类分层结构</h2>
|
||||
<ul>
|
||||
<li type="circle">java.lang.Object
|
||||
<ul>
|
||||
<li type="circle">com.iker.gid.<a href="com/iker/gid/GidClient.html" title="com.iker.gidæ¶“î… æ®‘ç»«»"><span class="strong">GidClient</span></a>
|
||||
<li type="circle">com.iker.gid.<a href="com/iker/gid/GidClient.html" title="com.iker.gid中的类"><span class="strong">GidClient</span></a>
|
||||
<ul>
|
||||
<li type="circle">com.iker.gid.<a href="com/iker/gid/GidClientCmdLine.html" title="com.iker.gidæ¶“î… æ®‘ç»«»"><span class="strong">GidClientCmdLine</span></a></li>
|
||||
<li type="circle">com.iker.gid.<a href="com/iker/gid/GidClientJson.html" title="com.iker.gidæ¶“î… æ®‘ç»«»"><span class="strong">GidClientJson</span></a></li>
|
||||
<li type="circle">com.iker.gid.<a href="com/iker/gid/GidClientXml.html" title="com.iker.gidæ¶“î… æ®‘ç»«»"><span class="strong">GidClientXml</span></a></li>
|
||||
<li type="circle">com.iker.gid.<a href="com/iker/gid/GidClientCmdLine.html" title="com.iker.gid中的类"><span class="strong">GidClientCmdLine</span></a></li>
|
||||
<li type="circle">com.iker.gid.<a href="com/iker/gid/GidClientJson.html" title="com.iker.gid中的类"><span class="strong">GidClientJson</span></a></li>
|
||||
<li type="circle">com.iker.gid.<a href="com/iker/gid/GidClientXml.html" title="com.iker.gid中的类"><span class="strong">GidClientXml</span></a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li type="circle">com.iker.gid.<a href="com/iker/gid/GidClientCmdLine.NameValue.html" title="com.iker.gidæ¶“î… æ®‘ç»«»"><span class="strong">GidClientCmdLine.NameValue</span></a></li>
|
||||
<li type="circle">com.iker.gid.<a href="com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gidæ¶“î… æ®‘ç»«»"><span class="strong">GidClientCmdLine.Tokens</span></a></li>
|
||||
<li type="circle">com.iker.gid.<a href="com/iker/gid/GidStatus.html" title="com.iker.gidæ¶“î… æ®‘ç»«»"><span class="strong">GidStatus</span></a></li>
|
||||
<li type="circle">com.iker.gid.<a href="com/iker/gid/GidClientCmdLine.NameValue.html" title="com.iker.gid中的类"><span class="strong">GidClientCmdLine.NameValue</span></a></li>
|
||||
<li type="circle">com.iker.gid.<a href="com/iker/gid/GidClientCmdLine.Tokens.html" title="com.iker.gid中的类"><span class="strong">GidClientCmdLine.Tokens</span></a></li>
|
||||
<li type="circle">com.iker.gid.<a href="com/iker/gid/GidStatus.html" title="com.iker.gid中的类"><span class="strong">GidStatus</span></a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
@ -91,30 +91,30 @@
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="ç’ºå® ç¹ƒç€µè‰°åŸ…é–¾ç‚¬å¸´"></a><a name="navbar_bottom_firstrow">
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="Navigation">
|
||||
<li><a href="com/iker/gid/package-summary.html">绋嬪ç°é<EFBFBD>–…</a></li>
|
||||
<li>绫»</li>
|
||||
<li>浣跨敤</li>
|
||||
<li class="navBarCell1Rev">é<EFBFBD><EFBFBD>‘</li>
|
||||
<li><a href="deprecated-list.html">宸茶繃é<EFBFBD>ƒ¶</a></li>
|
||||
<li><a href="index-files/index-1.html">绱㈠紩</a></li>
|
||||
<li><a href="help-doc.html">甯姪</a></li>
|
||||
<li><a href="com/iker/gid/package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li class="navBarCell1Rev">树</li>
|
||||
<li><a href="deprecated-list.html">已过时</a></li>
|
||||
<li><a href="index-files/index-1.html">索引</a></li>
|
||||
<li><a href="help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>涓å©<EFBFBD>竴涓ª</li>
|
||||
<li>涓嬩竴涓ª</li>
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="index.html?overview-tree.html" target="_top">妗嗘ç<EFBFBD>¦</a></li>
|
||||
<li><a href="overview-tree.html" target="_top">é<EFBFBD>ƒçŠ³î”‹é<EFBFBD>‹¶</a></li>
|
||||
<li><a href="index.html?overview-tree.html" target="_top">框架</a></li>
|
||||
<li><a href="overview-tree.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="allclasses-noframe.html">鎵€é<EFBFBD>ˆå¤Œè¢«</a></li>
|
||||
<li><a href="allclasses-noframe.html">所有类</a></li>
|
||||
</ul>
|
||||
<div>
|
||||
<script type="text/javascript"><!--
|
||||
|
@ -1,4 +1,4 @@
|
||||
/* Javadoc style sheet */
|
||||
/* Javadoc style sheet */
|
||||
/*
|
||||
Overall document style
|
||||
*/
|
||||
|
@ -1,4 +1,4 @@
|
||||
<EFBFBD>ソpackage com.iker.gid;
|
||||
package com.iker.gid;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.HttpURLConnection;
|
||||
@ -10,7 +10,7 @@ import java.net.URL;
|
||||
import java.net.UnknownHostException;
|
||||
|
||||
/**
|
||||
* 骼カ蛟溯埋骼コ繝・蠖<EFBFBD>
|
||||
* 抽象接口
|
||||
* @author zsx
|
||||
*
|
||||
*/
|
||||
@ -19,8 +19,8 @@ public abstract class GidClient {
|
||||
protected String serverIp = "192.168.1.251";
|
||||
protected int serverPort = 7072;
|
||||
protected String tagName = "default";
|
||||
protected int connTimeout = 10000; /* 譚ゥ轤エ蟶エ逑貞属讀る純蝣墓」ソ豸銅10扈薗 */
|
||||
protected int rdTimeout = 30000; /* 迺<EFBFBD><EFBFBD>遘エ髀<EFBFBD>扱讀る翌鄙<EFBFBD>雍<EFBFBD>30扈薗 */
|
||||
protected int connTimeout = 10000; /* 连接超时时间为10秒 */
|
||||
protected int rdTimeout = 30000; /* 读超时时间为30秒 */
|
||||
|
||||
public GidClient(String ip, int port, String tag)
|
||||
{
|
||||
@ -33,8 +33,8 @@ public abstract class GidClient {
|
||||
}
|
||||
|
||||
/**
|
||||
* 髑セ蟲ー邱ア豸灘ャゥ遶エ豸軟>謨ョ豸凪ぎID骰匚
|
||||
* @return 譚ゥ譁ソ豢夜込訷咏ォエ髏ィ<EFBFBD>64豬」蠍<EFBFBD>團髀∝クョ邏晄ソ。蛯帷♂譚ゥ譁ソ豢夜濠シ < 0 骰呈ャ偵<EFBFBD>サ蜩<EFBFBD>坏髢ソ<EFBFBD>
|
||||
* 获得下一个唯一ID号
|
||||
* @return 返回唯一的64位整数,如果返回值 < 0 则表示出错
|
||||
*/
|
||||
abstract public long gidNext();
|
||||
|
||||
@ -49,17 +49,17 @@ public abstract class GidClient {
|
||||
urlConnection.setConnectTimeout(connTimeout);
|
||||
urlConnection.setReadTimeout(rdTimeout);
|
||||
|
||||
// 迺∝鴬逍<EFBFBD>巡訷壽メ豬<EFBFBD>蟾逆tpUrlConnection迺<EFBFBD>ッイ蜿<EFBFBD>縛蟯<EFBFBD>イッ迺√f蜆城告蜈ク隨<EFBFBD>巡逞カrue;
|
||||
// 设置是否从httpUrlConnection读入,默认情况下是true;
|
||||
urlConnection.setDoInput(true);
|
||||
|
||||
// 迺∝鴬逍<EFBFBD>巡訷壽メ骰壽<EFBFBD>ttpUrlConnection譚域諜蝴ュ髞帛アス豢懈カ馴クソ郢匁カ軟≦讒クpost迺<EFBFBD>萩逵ー髞寥
|
||||
// 骰吝<EFBFBD>證溽装菴ケ譁<EFBFBD>恨ィ http蟋晢ス<EFBFBD>档骰仙茶邏晞婚迥ウ﨡晞裸竄ャ迹穂スス裵墓カ鍋ー荒ue, 讎帶ィソ蠇サ骼ッ蜻ュ蝟梧カ灘ャォ讒クfalse;
|
||||
// 设置是否向httpUrlConnection输出,因为这个是post请求,
|
||||
// 参数要放在 http正文内,因此需要设为true, 默认情况下是false;
|
||||
urlConnection.setDoOutput(true);
|
||||
|
||||
// 迺∝鴬逍<EFBFBD>カ銅 POST 迺<EFBFBD>萩逵ー髀ら族邏。
|
||||
// 设置为 POST 请求方式
|
||||
urlConnection.setRequestMethod("POST");
|
||||
|
||||
// Post 迺<EFBFBD>萩逵ー豸灘カ亥<EFBFBD>豬」霍ィ謨、郛よ諜逑ィ
|
||||
// Post 请求不能使用缓存
|
||||
urlConnection.setUseCaches(false);
|
||||
urlConnection.setInstanceFollowRedirects(false);
|
||||
urlConnection.setRequestProperty("User-Agent",
|
||||
@ -77,24 +77,24 @@ public abstract class GidClient {
|
||||
}
|
||||
|
||||
/**
|
||||
* 迺∝鴬逍<EFBFBD>O迺<EFBFBD><EFBFBD>遘エ髀<EFBFBD>扱讀る翌エ
|
||||
* @param timeout 逑貞属讀る純蝣墓」ソ髞帛<EFBFBD>晏エ滓オ」蠍<EFBFBD>エ溽サ画時邏夐縛螻ス都ァ髀区サ隨臥秩蜑ァ逍<EFBFBD>ァ昴f讀る翌霎セ邏<EFBFBD>
|
||||
* 骰呈ャ丞閥髢ョ繖ァ蟾ア髏ェ菴ク竄ャ髣エ雍<EFBFBD>30扈薗
|
||||
* 设置IO读超时时间
|
||||
* @param timeout 超时时间(单位为秒),如果不设置此时间,
|
||||
* 则内部缺省值为30秒
|
||||
*/
|
||||
public void setRdTimeout(int timeout)
|
||||
{
|
||||
// 轣丞吏鄧玲撼蘒ソ雍溷ァ」薰、鄧<EFBFBD>
|
||||
// 将秒转为毫秒
|
||||
rdTimeout = timeout * 1000;
|
||||
}
|
||||
|
||||
/**
|
||||
* 迺∝鴬逍<EFBFBD>シ∵サ<EFBFBD>ケ幃室繝ヲ讀る翌エ
|
||||
* @param timeout 逑貞属讀る純蝣墓」ソ髞帛<EFBFBD>晏エ滓オ」蠍<EFBFBD>エ溽サ画時邏夐縛螻ス都ァ髀区サ隨臥秩蜑ァ逍<EFBFBD>ァ昴f讀る翌霎セ邏<EFBFBD>
|
||||
* 骰呈ャ丞閥髢ョ繖ァ蟾ア髏ェ菴ク竄ャ髣エ雍<EFBFBD>10扈薗
|
||||
* 设置络连接时间
|
||||
* @param timeout 超时时间(单位为秒),如果不设置此时间,
|
||||
* 则内部缺省值为10秒
|
||||
*/
|
||||
public void setConnectTimeout(int timeout)
|
||||
{
|
||||
// 轣丞吏鄧玲撼蘒ソ雍溷ァ」薰、鄧<EFBFBD>
|
||||
// 将秒转为毫秒
|
||||
connTimeout = timeout * 1000;
|
||||
}
|
||||
|
||||
@ -105,7 +105,7 @@ public abstract class GidClient {
|
||||
socket.setSoTimeout(rdTimeout);
|
||||
SocketAddress socketAddress =
|
||||
new InetSocketAddress(serverIp, serverPort);
|
||||
// 逕ッ<EFBFBD>∫ケ幃室繝ィ遘エ髀<EFBFBD>扱譟溷ッョ蠢夂ケ幃室繝ヲ貉<EFBFBD>鵠窶ウ讚<EFBFBD>
|
||||
// 带连接超时方式连接服务器
|
||||
socket.connect(socketAddress, connTimeout);
|
||||
} catch (UnknownHostException e) {
|
||||
e.printStackTrace();
|
||||
@ -116,8 +116,8 @@ public abstract class GidClient {
|
||||
}
|
||||
|
||||
/**
|
||||
* 譚ゥ譁ソ豢夜国豢ェ謨企甑キ
|
||||
* @return 髢ソ谺悌<EFBFBD>骰匚
|
||||
* 返回出错号
|
||||
* @return 错误号
|
||||
*/
|
||||
int getLastError() {
|
||||
return errnum;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.iker.gid;
|
||||
package com.iker.gid;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
import java.io.IOException;
|
||||
@ -10,8 +10,8 @@ import java.util.StringTokenizer;
|
||||
import java.util.Vector;
|
||||
|
||||
/**
|
||||
* 鍛戒护琛屾柟寮忎粠GID鏈嶅姟鍣ㄥ彇寰楀敮涓€ID鍙凤紝鏄惁搴旇浣跨敤璇ユ柟寮忓彇寰楀敮涓€ID鍙凤紝
|
||||
* 搴旇鍙栧喅浜庢湇鍔″櫒鐨勯厤缃€夐」
|
||||
* 命令行方式从GID服务器取得唯一ID号,是否应该使用该方式取得唯一ID号,
|
||||
* 应该取决于服务器的配置选项
|
||||
* @author zsx
|
||||
*
|
||||
*/
|
||||
@ -22,7 +22,7 @@ public final class GidClientCmdLine extends GidClient {
|
||||
}
|
||||
|
||||
/**
|
||||
* name-value 瀵圭被鍨嬬被
|
||||
* name-value 对类型类
|
||||
*/
|
||||
public final class NameValue {
|
||||
private String name;
|
||||
@ -45,7 +45,7 @@ public final class GidClientCmdLine extends GidClient {
|
||||
}
|
||||
|
||||
/**
|
||||
* 鎷嗗垎瀛楃涓茬殑绫伙紝璇ョ被灏嗏€滃悕鍊尖€濆杩涜鎷嗗垎锛屾暟鎹牸寮忎负锛<EFBFBD>
|
||||
* 拆分字符串的类,该类将“名值”对进行拆分,数据格式为:
|
||||
* name1^value1|name2^value2|...
|
||||
*/
|
||||
public final class Tokens {
|
||||
@ -106,13 +106,13 @@ public final class GidClientCmdLine extends GidClient {
|
||||
socket = OpenTcp();
|
||||
|
||||
OutputStream out = socket.getOutputStream();
|
||||
/* 璇锋眰鐨勬暟鎹牸寮忥細CMD^new_gid|TAG^default */
|
||||
/* 请求的数据格式:CMD^new_gid|TAG^default */
|
||||
String buf = "CMD^new_gid|TAG^" + tagName + "\r\n";
|
||||
out.write(buf.getBytes());
|
||||
out.flush();
|
||||
//out.close();
|
||||
|
||||
/* 鍝嶅簲鏁版嵁鏍煎紡锛歴tatus^ok[|error]|gid^xxx[|tag^xxx|err^xxx|msg^xxx] */
|
||||
/* 响应数据格式:status^ok[|error]|gid^xxx[|tag^xxx|err^xxx|msg^xxx] */
|
||||
InputStream in = socket.getInputStream();
|
||||
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
|
||||
buf = reader.readLine();
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.iker.gid;
|
||||
package com.iker.gid;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
import java.io.IOException;
|
||||
@ -10,8 +10,8 @@ import java.net.HttpURLConnection;
|
||||
import net.sf.json.JSONObject;
|
||||
|
||||
/**
|
||||
* 鎸<EFBFBD> JSON 鏁版嵁鏍煎紡鑾峰緱GID锛岃嫢瑕佷娇鐢ㄦ鏂瑰紡鍙栧緱鍞竴ID锛屽垯鏈嶅姟鍣<EFBFBD>
|
||||
* 蹇呴』鏄惎鐢ㄤ簡HTTP鍗忚璁块棶鏂瑰紡
|
||||
* 按 JSON 数据格式获得GID,若要使用此方式取得唯一ID,则服务器
|
||||
* 必须是启用了HTTP协议访问方式
|
||||
* @author zsx
|
||||
*
|
||||
*/
|
||||
@ -30,7 +30,7 @@ public final class GidClientJson extends GidClient {
|
||||
urlConnection = OpenUrl("json");
|
||||
OutputStream os = urlConnection.getOutputStream();
|
||||
|
||||
/* 璇锋眰鐨勬暟鎹牸寮忥細{ cmd: 'new_gid'; tag: 'xxx'; } */
|
||||
/* 请求的数据格式:{ cmd: 'new_gid'; tag: 'xxx'; } */
|
||||
JSONObject json = new JSONObject();
|
||||
json.put("cmd", "new_gid");
|
||||
json.put("tag", tagName);
|
||||
@ -39,7 +39,7 @@ public final class GidClientJson extends GidClient {
|
||||
os.flush();
|
||||
//os.close();
|
||||
|
||||
/* 杩斿洖鐨勬暟鎹牸寮<EFBFBD>: { status: 'ok|error'; gid: xxx; tag: 'xxx'; msg: 'xxx'; err: 'xxx'; } */
|
||||
/* 返回的数据格式: { status: 'ok|error'; gid: xxx; tag: 'xxx'; msg: 'xxx'; err: 'xxx'; } */
|
||||
InputStream in = urlConnection.getInputStream();
|
||||
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
|
||||
String buf="";
|
||||
@ -50,7 +50,7 @@ public final class GidClientJson extends GidClient {
|
||||
break;
|
||||
buf += new String(tmp);
|
||||
}
|
||||
buf.toLowerCase(); // 鍏堣浆涓哄皬鍐<EFBFBD>
|
||||
buf.toLowerCase(); // 先转为小写
|
||||
|
||||
JSONObject jsonRet = JSONObject.fromObject(buf);
|
||||
String status = jsonRet.getString("status");
|
||||
|
@ -1,4 +1,4 @@
|
||||
package com.iker.gid;
|
||||
package com.iker.gid;
|
||||
import java.io.IOException;
|
||||
import java.io.OutputStream;
|
||||
import java.net.HttpURLConnection;
|
||||
@ -12,8 +12,8 @@ import org.w3c.dom.Element;
|
||||
import org.xml.sax.SAXException;
|
||||
|
||||
/**
|
||||
* 鎸塜ML鏍煎紡鑾峰緱GID鏁版嵁锛岃嫢瑕佷娇鐢ㄦ鏂瑰紡鍙栧緱鍞竴ID锛屽垯鏈嶅姟鍣<EFBFBD>
|
||||
* 蹇呴』鏄惎鐢ㄤ簡HTTP鍗忚璁块棶鏂瑰紡
|
||||
* 按XML格式获得GID数据,若要使用此方式取得唯一ID,则服务器
|
||||
* 必须是启用了HTTP协议访问方式
|
||||
* @author zsx
|
||||
*
|
||||
*/
|
||||
@ -29,14 +29,14 @@ public final class GidClientXml extends GidClient {
|
||||
// TODO Auto-generated method stub
|
||||
HttpURLConnection urlConnection = null;
|
||||
try {
|
||||
urlConnection = OpenUrl("xml"); // 杩炴帴鏈嶅姟鍣<EFBFBD>
|
||||
urlConnection = OpenUrl("xml"); // 连接服务器
|
||||
OutputStream os = urlConnection.getOutputStream();
|
||||
String body = "<request cmd='new_gid' tag='" + tagName + "' />";
|
||||
os.write(body.getBytes());
|
||||
os.flush();
|
||||
//os.close();
|
||||
|
||||
/* 杩斿洖鐨勬暟鎹牸寮<EFBFBD>: <respond status='ok|error' gid=xxx tag='xxx' msg='xxx' err='xxx' /> */
|
||||
/* 返回的数据格式: <respond status='ok|error' gid=xxx tag='xxx' msg='xxx' err='xxx' /> */
|
||||
|
||||
try {
|
||||
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
|
||||
|
@ -1,8 +1,8 @@
|
||||
package com.iker.gid;
|
||||
package com.iker.gid;
|
||||
|
||||
/**
|
||||
* @author zsx
|
||||
* 璇ョ被涓昏瀹氫箟浜咷ID鐨勯敊璇彿浠ュ強灏嗛敊璇彿杞负瀛楃涓叉弿杩颁俊鎭殑鍐呭
|
||||
* 该类主要定义了GID的错误号以及将错误号转为字符串描述信息的内容
|
||||
*/
|
||||
public final class GidStatus {
|
||||
public static final int gidOk = 200;
|
||||
@ -16,7 +16,7 @@ public final class GidStatus {
|
||||
public static final int gidErrSave = 502;
|
||||
|
||||
/**
|
||||
* 灏嗛敊璇彿杞负瀛楃涓叉弿杩颁俊鎭<EFBFBD>
|
||||
* 将错误号转为字符串描述信息
|
||||
* @param gidStatus
|
||||
* @return String
|
||||
*/
|
||||
|
@ -1,4 +1,4 @@
|
||||
POST / HTTP/1.1
|
||||
POST / HTTP/1.1
|
||||
Connection: keep-alive
|
||||
Content-Length: 26
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#ifndef __PROTO_CMD_INCLUDE_H__
|
||||
#ifndef __PROTO_CMD_INCLUDE_H__
|
||||
#define __PROTO_CMD_INCLUDE_H__
|
||||
|
||||
#include "lib_acl.h"
|
||||
@ -8,9 +8,9 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* 命令行方式的协议处理方式
|
||||
* @param client {ACL_VSTREAM*} 客户端流
|
||||
* @return {int} 0:表示正常,1:表示正常且保持长连接,-1:表示出错
|
||||
* 命令行方式的协议处理方式
|
||||
* @param client {ACL_VSTREAM*} 客户端流
|
||||
* @return {int} 0:表示正常,1:表示正常且保持长连接,-1:表示出错
|
||||
*/
|
||||
int cmdline_service(ACL_VSTREAM *client);
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#ifndef __GID_OPER_INCLUDE_H__
|
||||
#ifndef __GID_OPER_INCLUDE_H__
|
||||
#define __GID_OPER_INCLUDE_H__
|
||||
|
||||
#ifdef __cplusplus
|
||||
@ -7,40 +7,40 @@ extern "C" {
|
||||
|
||||
#include "lib_acl.h"
|
||||
|
||||
#define GID_OK 200 /* 正常 */
|
||||
#define GID_ERR_SID 500 /* 会话 ID 号不对 */
|
||||
#define GID_ERR_OVERRIDE 501 /* 达到最大分配值 */
|
||||
#define GID_ERR_SAVE 502 /* 存储至磁盘时出错 */
|
||||
#define GID_OK 200 /* 正常 */
|
||||
#define GID_ERR_SID 500 /* 会话 ID 号不对 */
|
||||
#define GID_ERR_OVERRIDE 501 /* 达到最大分配值 */
|
||||
#define GID_ERR_SAVE 502 /* 存储至磁盘时出错 */
|
||||
|
||||
/**
|
||||
* 根据错误号获得字符串描述
|
||||
* @param errnum {int} 错误号
|
||||
* @return {const char*} 错误描述
|
||||
* 根据错误号获得字符串描述
|
||||
* @param errnum {int} 错误号
|
||||
* @return {const char*} 错误描述
|
||||
*/
|
||||
const char *gid_serror(int errnum);
|
||||
|
||||
/**
|
||||
* 获取下一个GID号
|
||||
* @param path {const char*} 文件存储路径
|
||||
* @param tag {const char*} ID标识号
|
||||
* @param step {unsigned int} 每次的步进值
|
||||
* @param errnum {int*} 若非空,则记录出错原因
|
||||
* @return {acl_int64}, 如果返回值 < 0,则表示分配失败,
|
||||
* 出错原因参考 errnum 的返回值
|
||||
* 获取下一个GID号
|
||||
* @param path {const char*} 文件存储路径
|
||||
* @param tag {const char*} ID标识号
|
||||
* @param step {unsigned int} 每次的步进值
|
||||
* @param errnum {int*} 若非空,则记录出错原因
|
||||
* @return {acl_int64}, 如果返回值 < 0,则表示分配失败,
|
||||
* 出错原因参考 errnum 的返回值
|
||||
*/
|
||||
acl_int64 gid_next(const char *path, const char *tag,
|
||||
unsigned int step, int *errnum);
|
||||
|
||||
/**
|
||||
* 初始化,程序启动后应调用此函数初始化内部库
|
||||
* @param fh_limit {int} 缓存的文件句柄的最大个数
|
||||
* @param sync_gid {int} 每产生一个新的 gid 后是否同时同步至磁盘
|
||||
* @param debug_section {int} 调用用的标签值
|
||||
* 初始化,程序启动后应调用此函数初始化内部库
|
||||
* @param fh_limit {int} 缓存的文件句柄的最大个数
|
||||
* @param sync_gid {int} 每产生一个新的 gid 后是否同时同步至磁盘
|
||||
* @param debug_section {int} 调用用的标签值
|
||||
*/
|
||||
void gid_init(int fh_limit, int sync_gid, int debug_section);
|
||||
|
||||
/**
|
||||
* 程序退出前必须调用此函数,以使内存中数据刷新至磁盘
|
||||
* 程序退出前必须调用此函数,以使内存中数据刷新至磁盘
|
||||
*/
|
||||
void gid_finish(void);
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#ifndef __GLOBAL_INCLUDE_H__
|
||||
#ifndef __GLOBAL_INCLUDE_H__
|
||||
#define __GLOBAL_INCLUDE_H__
|
||||
|
||||
/* 配置文件项 */
|
||||
/* 配置文件项 */
|
||||
|
||||
extern int var_cfg_debug_mem;
|
||||
extern int var_cfg_loop_enable;
|
||||
@ -19,7 +19,7 @@ extern char *var_cfg_gid_path;
|
||||
extern char *var_cfg_proto_list;
|
||||
extern ACL_CONFIG_STR_TABLE service_conf_str_tab[];
|
||||
|
||||
/* 服务器之间传输的命令字定义 */
|
||||
/* 服务器之间传输的命令字定义 */
|
||||
#define CMD_NEW_GID "new_gid"
|
||||
#define CMD_TEST_GID "test_gid"
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#ifndef __HTTP_SERVICE_INCLUDE_H__
|
||||
#ifndef __HTTP_SERVICE_INCLUDE_H__
|
||||
#define __HTTP_SERVICE_INCLUDE_H__
|
||||
|
||||
#include "lib_acl.h"
|
||||
@ -11,19 +11,19 @@ extern "C" {
|
||||
/* in http_service.c */
|
||||
|
||||
/**
|
||||
* HTTP 协议方式处理方法
|
||||
* @param client {ACL_VSTREAM*} 客户端流
|
||||
* @return {int} 0:表示正常,1:表示正常且保持长连接,-1:表示出错
|
||||
* HTTP 协议方式处理方法
|
||||
* @param client {ACL_VSTREAM*} 客户端流
|
||||
* @return {int} 0:表示正常,1:表示正常且保持长连接,-1:表示出错
|
||||
*/
|
||||
int http_service(ACL_VSTREAM *client);
|
||||
|
||||
/**
|
||||
* 服务端返回 HTTP 响应给客户端
|
||||
* @param client {ACL_VSTREAM*} 客户端流
|
||||
* @param status {int} HTTP 响应状态码,1xx, 2xx, 3xx, 4xx, 5xx
|
||||
* @param keep_alive {int} 是否与客户端保持长连接
|
||||
* @param body {const char*} 数据体内容
|
||||
* @param len {int} 数据体长度
|
||||
* 服务端返回 HTTP 响应给客户端
|
||||
* @param client {ACL_VSTREAM*} 客户端流
|
||||
* @param status {int} HTTP 响应状态码,1xx, 2xx, 3xx, 4xx, 5xx
|
||||
* @param keep_alive {int} 是否与客户端保持长连接
|
||||
* @param body {const char*} 数据体内容
|
||||
* @param len {int} 数据体长度
|
||||
*/
|
||||
int http_server_send_respond(ACL_VSTREAM* client, int status,
|
||||
int keep_alive, char* body, int len);
|
||||
@ -31,11 +31,11 @@ int http_server_send_respond(ACL_VSTREAM* client, int status,
|
||||
/* in http_json.c */
|
||||
|
||||
/**
|
||||
* 请求数据的格式为 JSON 格式的处理
|
||||
* 请求数据的格式为 JSON 格式的处理
|
||||
* @param client {ACL_VSTREAM*}
|
||||
* @param hdr_req {HTTP_HDR_REQ*} HTTP 请求协议头对象
|
||||
* @param json {ACL_JSON*} json 解析器对象
|
||||
* @return {int} 0:表示正常,1:表示正常且保持长连接,-1:表示出错
|
||||
* @param hdr_req {HTTP_HDR_REQ*} HTTP 请求协议头对象
|
||||
* @param json {ACL_JSON*} json 解析器对象
|
||||
* @return {int} 0:表示正常,1:表示正常且保持长连接,-1:表示出错
|
||||
*/
|
||||
int http_json_service(ACL_VSTREAM *client,
|
||||
HTTP_HDR_REQ *hdr_req, ACL_JSON *json);
|
||||
@ -43,11 +43,11 @@ int http_json_service(ACL_VSTREAM *client,
|
||||
/* in http_xml.c */
|
||||
|
||||
/**
|
||||
* 请求数据的格式为 XML 格式的处理
|
||||
* 请求数据的格式为 XML 格式的处理
|
||||
* @param client {ACL_VSTREAM*}
|
||||
* @param hdr_req {HTTP_HDR_REQ*} HTTP 请求协议头对象
|
||||
* @param xml {ACL_XML*} xml 解析器对象
|
||||
* @return {int} 0:表示正常,1:表示正常且保持长连接,-1:表示出错
|
||||
* @param hdr_req {HTTP_HDR_REQ*} HTTP 请求协议头对象
|
||||
* @param xml {ACL_XML*} xml 解析器对象
|
||||
* @return {int} 0:表示正常,1:表示正常且保持长连接,-1:表示出错
|
||||
*/
|
||||
int http_xml_service(ACL_VSTREAM *client,
|
||||
HTTP_HDR_REQ *hdr_req, ACL_XML *xml);
|
||||
|
@ -1,4 +1,4 @@
|
||||
|
||||
|
||||
#ifndef __SERVICE_MAIN_INCLUDE_H__
|
||||
#define __SERVICE_MAIN_INCLUDE_H__
|
||||
|
||||
@ -9,16 +9,16 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* 初始化函数,服务器模板框架启动后仅调用该函数一次
|
||||
* @param ctx {void*} 用户自定义类型指针
|
||||
* 初始化函数,服务器模板框架启动后仅调用该函数一次
|
||||
* @param ctx {void*} 用户自定义类型指针
|
||||
*/
|
||||
extern void service_init(void *ctx);
|
||||
extern void service_exit(void *ctx);
|
||||
|
||||
/**
|
||||
* 协议处理函数入口
|
||||
* @param stream {ACL_VSTREAM*} 客户端数据连接流
|
||||
* @param ctx {void*} 用户自定义类型指针
|
||||
* 协议处理函数入口
|
||||
* @param stream {ACL_VSTREAM*} 客户端数据连接流
|
||||
* @param ctx {void*} 用户自定义类型指针
|
||||
*/
|
||||
extern int service_main(void* ctx, ACL_VSTREAM *stream);
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "lib_acl.h"
|
||||
#include "lib_acl.h"
|
||||
#include <string.h>
|
||||
#include "gid_oper.h"
|
||||
#include "global.h"
|
||||
@ -22,7 +22,7 @@ static int send_respond_gid(ACL_VSTREAM *stream,
|
||||
return (-1);
|
||||
}
|
||||
else
|
||||
return (1); /* 返回1表示保持长连接 */
|
||||
return (1); /* 返回1表示保持长连接 */
|
||||
}
|
||||
|
||||
static int send_respond_error(ACL_VSTREAM *stream,
|
||||
@ -65,22 +65,22 @@ static int proto_get_test_gid(ACL_VSTREAM *stream, const char *tag)
|
||||
/*--------------------------------------------------------------------------*/
|
||||
|
||||
typedef struct PROTO_CMDLINE {
|
||||
const char *cmd; /* 命令字 */
|
||||
int (*handle)(ACL_VSTREAM *, const char*); /* 协议处理函数句柄 */
|
||||
const char *cmd; /* 命令字 */
|
||||
int (*handle)(ACL_VSTREAM *, const char*); /* 协议处理函数句柄 */
|
||||
} PROTO_CMDLINE;
|
||||
|
||||
/* 协议命令处理函数映射表 */
|
||||
/* 协议命令处理函数映射表 */
|
||||
static PROTO_CMDLINE __proto_cmdline_tab[] = {
|
||||
{ CMD_NEW_GID, proto_new_gid },
|
||||
{ CMD_TEST_GID, proto_get_test_gid },
|
||||
{ NULL, NULL },
|
||||
};
|
||||
|
||||
/* 解析数据头 */
|
||||
/* 解析数据头 */
|
||||
|
||||
/* 协议格式:
|
||||
* 请求格式: CMD^xxx|tag^xxx:sid\r\n
|
||||
* 响应格式: STATUS^[OK|ERR]|[GID^xxx|INFO^xxx]|tag^%s\r\n
|
||||
/* 协议格式:
|
||||
* 请求格式: CMD^xxx|tag^xxx:sid\r\n
|
||||
* 响应格式: STATUS^[OK|ERR]|[GID^xxx|INFO^xxx]|tag^%s\r\n
|
||||
*/
|
||||
int cmdline_service(ACL_VSTREAM *client)
|
||||
{
|
||||
@ -91,7 +91,7 @@ int cmdline_service(ACL_VSTREAM *client)
|
||||
int i, ret;
|
||||
ACL_ITER iter;
|
||||
|
||||
/* 先读取数据头 */
|
||||
/* 先读取数据头 */
|
||||
ret = acl_vstream_gets_nonl(client, buf, sizeof(buf) - 1);
|
||||
if (ret == ACL_VSTREAM_EOF)
|
||||
return (-1);
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "lib_acl.h"
|
||||
#include "lib_acl.h"
|
||||
#include <errno.h>
|
||||
#include <string.h>
|
||||
#include <pthread.h>
|
||||
@ -6,34 +6,34 @@
|
||||
#include "gid_oper.h"
|
||||
|
||||
typedef struct GID_STORE {
|
||||
ACL_FHANDLE fh; /* 文件句柄 */
|
||||
ACL_VSTREAM *logger; /* 日志句柄 */
|
||||
char tag[64]; /* 文件标识号 */
|
||||
char sid[64]; /* 会话ID号,相当于密码 */
|
||||
unsigned int step; /* 步进值 */
|
||||
acl_int64 cur_gid; /* 当前的ID值 */
|
||||
acl_int64 min_gid; /* 最小的ID值 */
|
||||
acl_int64 max_gid; /* 最大的ID值 */
|
||||
ACL_FHANDLE fh; /* 文件句柄 */
|
||||
ACL_VSTREAM *logger; /* 日志句柄 */
|
||||
char tag[64]; /* 文件标识号 */
|
||||
char sid[64]; /* 会话ID号,相当于密码 */
|
||||
unsigned int step; /* 步进值 */
|
||||
acl_int64 cur_gid; /* 当前的ID值 */
|
||||
acl_int64 min_gid; /* 最小的ID值 */
|
||||
acl_int64 max_gid; /* 最大的ID值 */
|
||||
} GID_STORE;
|
||||
|
||||
typedef struct {
|
||||
char tag[64]; /* 文件标识号 */
|
||||
char sid[64]; /* 会话ID号,相当于密码 */
|
||||
unsigned int step; /* 步进值 */
|
||||
acl_int64 cur_gid; /* 当前的ID值 */
|
||||
acl_int64 min_gid; /* 最小的ID值 */
|
||||
acl_int64 max_gid; /* 最大的ID值 */
|
||||
char tag[64]; /* 文件标识号 */
|
||||
char sid[64]; /* 会话ID号,相当于密码 */
|
||||
unsigned int step; /* 步进值 */
|
||||
acl_int64 cur_gid; /* 当前的ID值 */
|
||||
acl_int64 min_gid; /* 最小的ID值 */
|
||||
acl_int64 max_gid; /* 最大的ID值 */
|
||||
} GID_STORE_CTX;
|
||||
|
||||
static int __sync_gid = 1;
|
||||
|
||||
/* 同步内存数据至磁盘 */
|
||||
/* 同步内存数据至磁盘 */
|
||||
|
||||
static int gid_store_sync(GID_STORE *store)
|
||||
{
|
||||
char buf[1024];
|
||||
|
||||
/* 需要先将文件内容清空 */
|
||||
/* 需要先将文件内容清空 */
|
||||
#if 0
|
||||
if (acl_file_ftruncate(store->fh.fp, 0) < 0) {
|
||||
acl_msg_error("%s(%d), %s: ftruncate %s error(%s)",
|
||||
@ -52,7 +52,7 @@ static int gid_store_sync(GID_STORE *store)
|
||||
store->tag, store->sid, store->step, store->cur_gid,
|
||||
store->min_gid, store->max_gid);
|
||||
|
||||
/* 初始化文件内容: tag:sid step cur_gid min_gid max_gid\r\n */
|
||||
/* 初始化文件内容: tag:sid step cur_gid min_gid max_gid\r\n */
|
||||
if (acl_vstream_writen(store->fh.fp,
|
||||
buf, strlen(buf)) == ACL_VSTREAM_EOF)
|
||||
{
|
||||
@ -65,7 +65,7 @@ static int gid_store_sync(GID_STORE *store)
|
||||
return (0);
|
||||
}
|
||||
|
||||
/* 文件打开时的回调函数,有可能是打开了缓存句柄对象 */
|
||||
/* 文件打开时的回调函数,有可能是打开了缓存句柄对象 */
|
||||
|
||||
static int gid_store_on_open(ACL_FHANDLE *fh, void *ctx)
|
||||
{
|
||||
@ -75,13 +75,13 @@ static int gid_store_on_open(ACL_FHANDLE *fh, void *ctx)
|
||||
char buf[512], *ptr;
|
||||
int ret;
|
||||
|
||||
/* 检查是否有问题 */
|
||||
/* 检查是否有问题 */
|
||||
if (fh->size != sizeof(GID_STORE))
|
||||
acl_msg_fatal("%s(%d), %s: size(%d) != GID_STORE's size(%d)",
|
||||
__FILE__, __LINE__, __FUNCTION__,
|
||||
(int) fh->size, (int) sizeof(GID_STORE));
|
||||
|
||||
/* 如果是新文件则初始化 */
|
||||
/* 如果是新文件则初始化 */
|
||||
if (fh->fsize == 0) {
|
||||
ACL_SAFE_STRNCPY(store->tag, sc->tag, sizeof(store->tag));
|
||||
ACL_SAFE_STRNCPY(store->sid, sc->sid, sizeof(store->sid));
|
||||
@ -93,9 +93,9 @@ static int gid_store_on_open(ACL_FHANDLE *fh, void *ctx)
|
||||
return (gid_store_sync(store));
|
||||
}
|
||||
|
||||
/* 数据格式:tag:sid step cur_gid min_gid max_gid\r\n */
|
||||
/* 数据格式:tag:sid step cur_gid min_gid max_gid\r\n */
|
||||
|
||||
/* 从文件中获得数据 */
|
||||
/* 从文件中获得数据 */
|
||||
ret = acl_vstream_gets_nonl(fh->fp, buf, sizeof(buf));
|
||||
if (ret == ACL_VSTREAM_EOF) {
|
||||
acl_msg_error("%s(%d), %s: gets from %s error(%s)",
|
||||
@ -104,7 +104,7 @@ static int gid_store_on_open(ACL_FHANDLE *fh, void *ctx)
|
||||
return (-1);
|
||||
}
|
||||
|
||||
/* 拆分字符串 */
|
||||
/* 拆分字符串 */
|
||||
argv = acl_argv_split(buf, ",\t ");
|
||||
if (argv->argc < 5) {
|
||||
acl_msg_error("%s(%d), %s: invalid line(%s) from %s",
|
||||
@ -122,7 +122,7 @@ static int gid_store_on_open(ACL_FHANDLE *fh, void *ctx)
|
||||
}
|
||||
store->step = atoi(argv->argv[1]);
|
||||
|
||||
/* 如果存储的步进值与参数中的步进值不一致,则优先采用参数步进值 */
|
||||
/* 如果存储的步进值与参数中的步进值不一致,则优先采用参数步进值 */
|
||||
if (store->step != sc->step) {
|
||||
acl_msg_warn("%s(%d), %s: change step from %d to %d for %s",
|
||||
__FILE__, __LINE__, __FUNCTION__,
|
||||
@ -137,20 +137,20 @@ static int gid_store_on_open(ACL_FHANDLE *fh, void *ctx)
|
||||
return (0);
|
||||
}
|
||||
|
||||
/* 文件句柄真正关闭时的回调函数 */
|
||||
/* 文件句柄真正关闭时的回调函数 */
|
||||
|
||||
static void gid_store_on_close(ACL_FHANDLE *fh acl_unused)
|
||||
{
|
||||
GID_STORE *store = (GID_STORE*) fh;
|
||||
|
||||
/* 当设置了非实时同步标记时才需要在文件句柄关闭时同步磁盘 */
|
||||
/* 当设置了非实时同步标记时才需要在文件句柄关闭时同步磁盘 */
|
||||
if (__sync_gid == 0 && gid_store_sync(store) < 0)
|
||||
acl_msg_fatal("%s(%d), %s: save %s error(%s)",
|
||||
__FILE__, __LINE__, __FUNCTION__,
|
||||
ACL_VSTREAM_PATH(store->fh.fp), acl_last_serror());
|
||||
}
|
||||
|
||||
/* 打开文件,如果文件不存在则创建新的文件,如果文件句柄已经存在则直接返回 */
|
||||
/* 打开文件,如果文件不存在则创建新的文件,如果文件句柄已经存在则直接返回 */
|
||||
|
||||
static GID_STORE *gid_store_open(const char *path, const char *tag,
|
||||
const char *sid, unsigned int step)
|
||||
@ -179,7 +179,7 @@ static GID_STORE *gid_store_open(const char *path, const char *tag,
|
||||
return (store);
|
||||
}
|
||||
|
||||
/* 获得当前本地时间 */
|
||||
/* 获得当前本地时间 */
|
||||
|
||||
static void logtime_fmt(char *buf, size_t size)
|
||||
{
|
||||
@ -191,7 +191,7 @@ static void logtime_fmt(char *buf, size_t size)
|
||||
strftime(buf, size, "%Y/%m/%d %H:%M:%S", &local_time);
|
||||
}
|
||||
|
||||
/* 记录日志 */
|
||||
/* 记录日志 */
|
||||
|
||||
static void gid_logger(GID_STORE *store)
|
||||
{
|
||||
@ -218,7 +218,7 @@ acl_int64 gid_next(const char *path, const char *tag_in,
|
||||
char tag[128], *sid;
|
||||
GID_STORE *store;
|
||||
|
||||
/* 需要从 tag 串中分离出 sid 串 */
|
||||
/* 需要从 tag 串中分离出 sid 串 */
|
||||
ACL_SAFE_STRNCPY(tag, tag_in, sizeof(tag));
|
||||
sid = strchr(tag, ':');
|
||||
if (sid)
|
||||
@ -235,13 +235,13 @@ acl_int64 gid_next(const char *path, const char *tag_in,
|
||||
if (errnum)
|
||||
*errnum = GID_ERR_SID;
|
||||
|
||||
/* 关闭文件句柄,延迟 60 秒后关闭 */
|
||||
/* 关闭文件句柄,延迟 60 秒后关闭 */
|
||||
acl_fhandle_close(&store->fh, 60);
|
||||
return (-1);
|
||||
}
|
||||
}
|
||||
|
||||
/* 如果已经达到最大值,则崩溃了! */
|
||||
/* 如果已经达到最大值,则崩溃了! */
|
||||
if (store->max_gid - (unsigned int) store->step <= store->cur_gid) {
|
||||
acl_msg_error("%s(%d), %s: %s Override!!, max_gid: %lld,"
|
||||
" step: %d, cur_gid: %lld", __FILE__, __LINE__,
|
||||
@ -250,7 +250,7 @@ acl_int64 gid_next(const char *path, const char *tag_in,
|
||||
|
||||
if (errnum)
|
||||
*errnum = GID_ERR_OVERRIDE;
|
||||
/* 关闭文件句柄,延迟 60 秒后关闭 */
|
||||
/* 关闭文件句柄,延迟 60 秒后关闭 */
|
||||
acl_fhandle_close(&store->fh, 60);
|
||||
return (-1);
|
||||
}
|
||||
@ -266,16 +266,16 @@ acl_int64 gid_next(const char *path, const char *tag_in,
|
||||
ACL_VSTREAM_PATH(store->fh.fp),
|
||||
acl_last_serror());
|
||||
|
||||
/* 关闭文件句柄,延迟 60 秒后关闭 */
|
||||
/* 关闭文件句柄,延迟 60 秒后关闭 */
|
||||
acl_fhandle_close(&store->fh, 60);
|
||||
return (-1);
|
||||
}
|
||||
|
||||
/* 记日志 */
|
||||
/* 记日志 */
|
||||
if (store->logger)
|
||||
gid_logger(store);
|
||||
|
||||
/* 关闭文件句柄,延迟 60 秒后关闭 */
|
||||
/* 关闭文件句柄,延迟 60 秒后关闭 */
|
||||
acl_fhandle_close(&store->fh, 60);
|
||||
|
||||
if (errnum)
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "lib_acl.h"
|
||||
#include "lib_acl.h"
|
||||
#include "lib_protocol.h"
|
||||
#include "gid_oper.h"
|
||||
#include "global.h"
|
||||
@ -45,20 +45,20 @@ static int json_new_gid(ACL_VSTREAM *client, int keep_alive, ACL_JSON *json)
|
||||
/*--------------------------------------------------------------------------*/
|
||||
|
||||
typedef struct PROTO_JSON {
|
||||
/* 命令字 */
|
||||
/* 命令字 */
|
||||
const char *cmd;
|
||||
|
||||
/* 协议处理函数句柄 */
|
||||
/* 协议处理函数句柄 */
|
||||
int (*handle)(ACL_VSTREAM *client, int keep_alive, ACL_JSON*);
|
||||
} PROTO_JSON;
|
||||
|
||||
/* 协议命令处理函数映射表 */
|
||||
/* 协议命令处理函数映射表 */
|
||||
static PROTO_JSON __proto_json_tab[] = {
|
||||
{ CMD_NEW_GID, json_new_gid },
|
||||
{ NULL, NULL },
|
||||
};
|
||||
|
||||
/* 处理 json 数据格式的请求 */
|
||||
/* 处理 json 数据格式的请求 */
|
||||
|
||||
int http_json_service(ACL_VSTREAM *client,
|
||||
HTTP_HDR_REQ *hdr_req, ACL_JSON *json)
|
||||
@ -68,9 +68,9 @@ int http_json_service(ACL_VSTREAM *client,
|
||||
char cmd[128];
|
||||
int ret, i, keep_alive = 0;
|
||||
|
||||
/* json 数据格式要求: { cmd: xxx, tag: xxx:sid } */
|
||||
/* json 数据格式要求: { cmd: xxx, tag: xxx:sid } */
|
||||
|
||||
/* 获得 cmd 命令字 */
|
||||
/* 获得 cmd 命令字 */
|
||||
|
||||
a = acl_json_getElementsByTagName(json, "cmd");
|
||||
if (a == NULL) {
|
||||
@ -79,7 +79,7 @@ int http_json_service(ACL_VSTREAM *client,
|
||||
return (-1);
|
||||
}
|
||||
|
||||
/* 从 JSON 对象获得命令字 */
|
||||
/* 从 JSON 对象获得命令字 */
|
||||
cmd[0] = 0;
|
||||
acl_foreach(iter, a) {
|
||||
ACL_JSON_NODE *node = (ACL_JSON_NODE*) iter.data;
|
||||
@ -96,10 +96,10 @@ int http_json_service(ACL_VSTREAM *client,
|
||||
return (-1);
|
||||
}
|
||||
|
||||
/* 客户端是否要求保持长连接 */
|
||||
/* 客户端是否要求保持长连接 */
|
||||
keep_alive = hdr_req->hdr.keep_alive;
|
||||
|
||||
/* 查询对应命令的处理函数对象 */
|
||||
/* 查询对应命令的处理函数对象 */
|
||||
ret = -1;
|
||||
for (i = 0; __proto_json_tab[i].cmd != NULL; i++) {
|
||||
if (strcasecmp(cmd, __proto_json_tab[i].cmd) == 0) {
|
||||
@ -113,9 +113,9 @@ int http_json_service(ACL_VSTREAM *client,
|
||||
__FILE__, __LINE__, __FUNCTION__, cmd);
|
||||
|
||||
if (ret < 0)
|
||||
return (-1); /* 出错 */
|
||||
return (-1); /* 出错 */
|
||||
else if (keep_alive)
|
||||
return (1); /* 正常且需要保持长连接 */
|
||||
return (1); /* 正常且需要保持长连接 */
|
||||
else
|
||||
return (0); /* 正常便是短连接 */
|
||||
return (0); /* 正常便是短连接 */
|
||||
}
|
||||
|
@ -1,50 +1,50 @@
|
||||
#include "lib_acl.h"
|
||||
#include "lib_acl.h"
|
||||
#include "lib_protocol.h"
|
||||
|
||||
#include "global.h"
|
||||
#include "http_service.h"
|
||||
|
||||
/* 将数据返回给 HTTP 客户端 */
|
||||
/* 将数据返回给 HTTP 客户端 */
|
||||
|
||||
int http_server_send_respond(ACL_VSTREAM* client, int status,
|
||||
int keep_alive, char* body, int len)
|
||||
{
|
||||
int ret;
|
||||
struct iovec vector[2]; /* 数据数组 */
|
||||
struct iovec vector[2]; /* 数据数组 */
|
||||
ACL_VSTRING* buf = acl_vstring_alloc(256);
|
||||
HTTP_HDR_RES* hdr_res = http_hdr_res_static(status);
|
||||
|
||||
/* 在请求头中设置请求体的数据长度 */
|
||||
/* 在请求头中设置请求体的数据长度 */
|
||||
http_hdr_put_int(&hdr_res->hdr, "Content-Length", len);
|
||||
/* 设置长连接选项 */
|
||||
/* 设置长连接选项 */
|
||||
http_hdr_put_str(&hdr_res->hdr, "Connection",
|
||||
keep_alive ? "keep-alive" : "close");
|
||||
|
||||
/* 构建 HTTP 响应头数据 */
|
||||
/* 构建 HTTP 响应头数据 */
|
||||
http_hdr_build(&hdr_res->hdr, buf);
|
||||
|
||||
/* 设置 HTTP 头 */
|
||||
/* 设置 HTTP 头 */
|
||||
vector[0].iov_base = acl_vstring_str(buf);
|
||||
vector[0].iov_len = ACL_VSTRING_LEN(buf);
|
||||
/* 设置 HTTP 体 */
|
||||
/* 设置 HTTP 体 */
|
||||
vector[1].iov_base = body;
|
||||
vector[1].iov_len = len;
|
||||
|
||||
/* 发送响应头及响应体 */
|
||||
/* 发送响应头及响应体 */
|
||||
ret = acl_vstream_writevn(client, vector, 2);
|
||||
/* 释放 HTTP 响应头对象 */
|
||||
/* 释放 HTTP 响应头对象 */
|
||||
http_hdr_res_free(hdr_res);
|
||||
/* 释放缓冲区 */
|
||||
/* 释放缓冲区 */
|
||||
acl_vstring_free(buf);
|
||||
|
||||
if (ret == ACL_VSTREAM_EOF)
|
||||
return -1;
|
||||
|
||||
/* 发送HTTP响应成功 */
|
||||
/* 发送HTTP响应成功 */
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* HTTP 协议处理过程入口 */
|
||||
/* HTTP 协议处理过程入口 */
|
||||
|
||||
int http_service(ACL_VSTREAM *client)
|
||||
{
|
||||
@ -54,14 +54,14 @@ int http_service(ACL_VSTREAM *client)
|
||||
int ret, json_fmt;
|
||||
const char *ptr;
|
||||
|
||||
/* 读取HTTP请求头 */
|
||||
/* 读取HTTP请求头 */
|
||||
ret = http_hdr_req_get_sync(hdr_req, client, var_cfg_io_timeout);
|
||||
if (ret < 0) {
|
||||
http_hdr_req_free(hdr_req);
|
||||
return (-1);
|
||||
}
|
||||
|
||||
/* 分析HTTP请求头 */
|
||||
/* 分析HTTP请求头 */
|
||||
if (http_hdr_req_parse(hdr_req) < 0) {
|
||||
http_hdr_req_free(hdr_req);
|
||||
acl_msg_error("%s(%d), %s: http request header invalid",
|
||||
@ -69,7 +69,7 @@ int http_service(ACL_VSTREAM *client)
|
||||
return (-1);
|
||||
}
|
||||
|
||||
/* 必须保证数据体长度 > 0 */
|
||||
/* 必须保证数据体长度 > 0 */
|
||||
if (hdr_req->hdr.content_length <= 0) {
|
||||
http_hdr_req_free(hdr_req);
|
||||
acl_msg_error("%s(%d), %s: http request header invalid",
|
||||
@ -77,28 +77,28 @@ int http_service(ACL_VSTREAM *client)
|
||||
return (-1);
|
||||
}
|
||||
|
||||
/* 从 HTTP 请求头中获取请求体中的数据格式:XML 或 JSON 格式 */
|
||||
/* 从 HTTP 请求头中获取请求体中的数据格式:XML 或 JSON 格式 */
|
||||
ptr = http_hdr_entry_value(&hdr_req->hdr, "x-gid-format");
|
||||
if (ptr != NULL && strcasecmp(ptr, "xml") == 0)
|
||||
json_fmt = 0;
|
||||
else
|
||||
json_fmt = 1;
|
||||
|
||||
req = http_req_new(hdr_req); /* 创建HTTP请求对象 */
|
||||
req = http_req_new(hdr_req); /* 创建HTTP请求对象 */
|
||||
|
||||
if (json_fmt) {
|
||||
ACL_JSON *json = acl_json_alloc(); /* 创建JSON解析器对象 */
|
||||
ACL_JSON *json = acl_json_alloc(); /* 创建JSON解析器对象 */
|
||||
|
||||
/* 不断从客户端连接中读取数据,并放入JSON解析器中进行解析 */
|
||||
/* 不断从客户端连接中读取数据,并放入JSON解析器中进行解析 */
|
||||
while (1) {
|
||||
ret = http_req_body_get_sync(req, client,
|
||||
buf, sizeof(buf) - 1);
|
||||
if (ret < 0) {
|
||||
/* 说明没有读到所要求的数据长度,表明出错 */
|
||||
/* 说明没有读到所要求的数据长度,表明出错 */
|
||||
http_req_free(req);
|
||||
acl_json_free(json);
|
||||
return (-1);
|
||||
} else if (ret == 0) /* 表明已经读完了所有的数据 */
|
||||
} else if (ret == 0) /* 表明已经读完了所有的数据 */
|
||||
break;
|
||||
buf[ret] = 0;
|
||||
acl_json_update(json, buf);
|
||||
@ -107,7 +107,7 @@ int http_service(ACL_VSTREAM *client)
|
||||
ret = http_json_service(client, hdr_req, json);
|
||||
acl_json_free(json);
|
||||
} else {
|
||||
ACL_XML *xml = acl_xml_alloc(); /* 创建XML解析器对象 */
|
||||
ACL_XML *xml = acl_xml_alloc(); /* 创建XML解析器对象 */
|
||||
|
||||
while (1) {
|
||||
ret = http_req_body_get_sync(req, client,
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "lib_acl.h"
|
||||
#include "lib_acl.h"
|
||||
#include "lib_protocol.h"
|
||||
|
||||
#include "gid_oper.h"
|
||||
@ -37,20 +37,20 @@ static int xml_new_gid(ACL_VSTREAM *client, int keep_alive, ACL_XML_NODE *node)
|
||||
/*--------------------------------------------------------------------------*/
|
||||
|
||||
typedef struct PROTO_XML {
|
||||
/* 命令字 */
|
||||
/* 命令字 */
|
||||
const char *cmd;
|
||||
|
||||
/* 协议处理函数句柄 */
|
||||
/* 协议处理函数句柄 */
|
||||
int (*handle)(ACL_VSTREAM *client, int keep_alive, ACL_XML_NODE*);
|
||||
} PROTO_XML;
|
||||
|
||||
/* 协议命令处理函数映射表 */
|
||||
/* 协议命令处理函数映射表 */
|
||||
static PROTO_XML __proto_xml_tab[] = {
|
||||
{ CMD_NEW_GID, xml_new_gid },
|
||||
{ NULL, NULL },
|
||||
};
|
||||
|
||||
/* 处理 xml 数据格式的请求 */
|
||||
/* 处理 xml 数据格式的请求 */
|
||||
|
||||
int http_xml_service(ACL_VSTREAM *client,
|
||||
HTTP_HDR_REQ *hdr_req, ACL_XML *xml)
|
||||
@ -62,9 +62,9 @@ int http_xml_service(ACL_VSTREAM *client,
|
||||
ACL_XML_NODE *node;
|
||||
int ret, i, keep_alive = 0;
|
||||
|
||||
/* xml 数据格式要求: <request cmd='xxx' tag='xxx:sid' /> */
|
||||
/* xml 数据格式要求: <request cmd='xxx' tag='xxx:sid' /> */
|
||||
|
||||
/* 获得 cmd 命令字 */
|
||||
/* 获得 cmd 命令字 */
|
||||
|
||||
a = acl_xml_getElementsByTagName(xml, "request");
|
||||
if (a == NULL) {
|
||||
@ -73,7 +73,7 @@ int http_xml_service(ACL_VSTREAM *client,
|
||||
return (-1);
|
||||
}
|
||||
|
||||
/* 找到第一个结点即可 */
|
||||
/* 找到第一个结点即可 */
|
||||
|
||||
node = NULL;
|
||||
acl_foreach(iter, a) {
|
||||
@ -81,7 +81,7 @@ int http_xml_service(ACL_VSTREAM *client,
|
||||
break;
|
||||
}
|
||||
|
||||
/* 从 xml 对象获得命令字 */
|
||||
/* 从 xml 对象获得命令字 */
|
||||
|
||||
ptr = acl_xml_getElementAttrVal(node, "cmd");
|
||||
if (ptr == NULL || *ptr == 0) {
|
||||
@ -99,10 +99,10 @@ int http_xml_service(ACL_VSTREAM *client,
|
||||
return (-1);
|
||||
}
|
||||
|
||||
/* 客户端是否要求保持长连接 */
|
||||
/* 客户端是否要求保持长连接 */
|
||||
keep_alive = hdr_req->hdr.keep_alive;
|
||||
|
||||
/* 查询对应命令的处理函数对象 */
|
||||
/* 查询对应命令的处理函数对象 */
|
||||
ret = -1;
|
||||
for (i = 0; __proto_xml_tab[i].cmd != NULL; i++) {
|
||||
if (strcasecmp(cmd, __proto_xml_tab[i].cmd) == 0) {
|
||||
@ -112,7 +112,7 @@ int http_xml_service(ACL_VSTREAM *client,
|
||||
}
|
||||
}
|
||||
|
||||
/* 必须是在不用 node 时才可以释放该数组对象 */
|
||||
/* 必须是在不用 node 时才可以释放该数组对象 */
|
||||
acl_xml_free_array(a);
|
||||
|
||||
if (__proto_xml_tab[i].cmd == NULL)
|
||||
@ -120,9 +120,9 @@ int http_xml_service(ACL_VSTREAM *client,
|
||||
__FILE__, __LINE__, __FUNCTION__, cmd);
|
||||
|
||||
if (ret < 0)
|
||||
return (-1); /* 出错 */
|
||||
return (-1); /* 出错 */
|
||||
else if (keep_alive)
|
||||
return (1); /* 正常且需要保持长连接 */
|
||||
return (1); /* 正常且需要保持长连接 */
|
||||
else
|
||||
return (0); /* 正常便是短连接 */
|
||||
return (0); /* 正常便是短连接 */
|
||||
}
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "lib_acl.h"
|
||||
#include "lib_acl.h"
|
||||
#include "lib_protocol.h"
|
||||
|
||||
#include "global.h"
|
||||
@ -7,7 +7,7 @@
|
||||
#include "http_service.h"
|
||||
#include "service_main.h"
|
||||
|
||||
/* 配置文件项 */
|
||||
/* 配置文件项 */
|
||||
|
||||
/* TODO: you can add configure items here */
|
||||
|
||||
@ -109,7 +109,7 @@ static void parse_proto_list(void)
|
||||
acl_argv_free(tokens);
|
||||
}
|
||||
|
||||
/* 初始化函数 */
|
||||
/* 初始化函数 */
|
||||
void service_init(void *ctx acl_unused)
|
||||
{
|
||||
if (var_cfg_debug_mem) {
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "lib_acl.h"
|
||||
#include "lib_acl.h"
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <errno.h>
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "lib_acl.h"
|
||||
#include "lib_acl.h"
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <errno.h>
|
||||
@ -60,7 +60,7 @@ static ACL_VSTREAM *init(const char *filepath)
|
||||
if (cfg)
|
||||
acl_xinetd_cfg_free(cfg);
|
||||
|
||||
signal(SIGINT, on_sigint); /* 注册程序退出回调函数 */
|
||||
signal(SIGINT, on_sigint); /* 注册程序退出回调函数 */
|
||||
service_init(NULL);
|
||||
|
||||
return (sstream);
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "lib_acl.h"
|
||||
#include "lib_acl.h"
|
||||
#include <stdlib.h>
|
||||
#include <stdio.h>
|
||||
#include <errno.h>
|
||||
|
@ -1,3 +1,3 @@
|
||||
本模块主要提供唯一ID号的功能,服务器启动后,客户端可以通过
|
||||
三种协议方式连接服务器获得唯一ID,目前提供了C和JAVA版本的
|
||||
客户端API。
|
||||
本模块主要提供唯一ID号的功能,服务器启动后,客户端可以通过
|
||||
三种协议方式连接服务器获得唯一ID,目前提供了C和JAVA版本的
|
||||
客户端API。
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "stdafx.h"
|
||||
#include "stdafx.h"
|
||||
#include <list>
|
||||
#include <vector>
|
||||
#include <map>
|
||||
|
@ -1,8 +1,8 @@
|
||||
// stdafx.cpp : 只包括标准包含文件的源文件
|
||||
// wizard.pch 将成为预编译头
|
||||
// stdafx.obj 将包含预编译类型信息
|
||||
// stdafx.cpp : 只包括标准包含文件的源文件
|
||||
// wizard.pch 将成为预编译头
|
||||
// stdafx.obj 将包含预编译类型信息
|
||||
|
||||
#include "stdafx.h"
|
||||
|
||||
// TODO: 在 STDAFX.H 中
|
||||
//引用任何所需的附加头文件,而不是在此文件中引用
|
||||
// TODO: 在 STDAFX.H 中
|
||||
//引用任何所需的附加头文件,而不是在此文件中引用
|
||||
|
@ -1,5 +1,5 @@
|
||||
// stdafx.h : 标准系统包含文件的包含文件,
|
||||
// 或是常用但不常更改的项目特定的包含文件
|
||||
// stdafx.h : 标准系统包含文件的包含文件,
|
||||
// 或是常用但不常更改的项目特定的包含文件
|
||||
//
|
||||
|
||||
#pragma once
|
||||
@ -8,7 +8,7 @@
|
||||
//#include <iostream>
|
||||
//#include <tchar.h>
|
||||
|
||||
// TODO: 在此处引用程序要求的附加头文件
|
||||
// TODO: 在此处引用程序要求的附加头文件
|
||||
|
||||
#include "lib_acl.h"
|
||||
#include "acl_cpp/lib_acl.hpp"
|
@ -1,4 +1,4 @@
|
||||
#include "stdafx.h"
|
||||
#include "stdafx.h"
|
||||
#include "struct.h"
|
||||
#include "struct.gson.h"
|
||||
#include "acl_cpp/serialize/gson_helper.ipp"
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace acl
|
||||
namespace acl
|
||||
{
|
||||
//base
|
||||
acl::string gson(const base &$obj);
|
||||
|
@ -1,4 +1,4 @@
|
||||
#pragma once#pragma once
|
||||
#pragma once#pragma once
|
||||
#include <set>
|
||||
|
||||
struct base
|
||||
|
@ -1,5 +1,5 @@
|
||||
// stdafx.h : 标准系统包含文件的包含文件,
|
||||
// 或是常用但不常更改的项目特定的包含文件
|
||||
// stdafx.h : 标准系统包含文件的包含文件,
|
||||
// 或是常用但不常更改的项目特定的包含文件
|
||||
//
|
||||
|
||||
#pragma once
|
||||
@ -8,7 +8,7 @@
|
||||
//#include <iostream>
|
||||
//#include <tchar.h>
|
||||
|
||||
// TODO: 在此处引用程序要求的附加头文件
|
||||
// TODO: 在此处引用程序要求的附加头文件
|
||||
#include <assert.h>
|
||||
#include <iostream>
|
||||
#include <algorithm>
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "stdafx.h"
|
||||
#include "stdafx.h"
|
||||
#include <vector>
|
||||
#include <string>
|
||||
#include <iostream>
|
||||
|
@ -1,8 +1,8 @@
|
||||
// stdafx.cpp : 只包括标准包含文件的源文件
|
||||
// wizard.pch 将成为预编译头
|
||||
// stdafx.obj 将包含预编译类型信息
|
||||
// stdafx.cpp : 只包括标准包含文件的源文件
|
||||
// wizard.pch 将成为预编译头
|
||||
// stdafx.obj 将包含预编译类型信息
|
||||
|
||||
#include "stdafx.h"
|
||||
|
||||
// TODO: 在 STDAFX.H 中
|
||||
//引用任何所需的附加头文件,而不是在此文件中引用
|
||||
// TODO: 在 STDAFX.H 中
|
||||
//引用任何所需的附加头文件,而不是在此文件中引用
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "stdafx.h"
|
||||
#include "stdafx.h"
|
||||
#include <list>
|
||||
#include <vector>
|
||||
#include <map>
|
||||
|
@ -1,8 +1,8 @@
|
||||
// stdafx.cpp : 只包括标准包含文件的源文件
|
||||
// wizard.pch 将成为预编译头
|
||||
// stdafx.obj 将包含预编译类型信息
|
||||
// stdafx.cpp : 只包括标准包含文件的源文件
|
||||
// wizard.pch 将成为预编译头
|
||||
// stdafx.obj 将包含预编译类型信息
|
||||
|
||||
#include "stdafx.h"
|
||||
|
||||
// TODO: 在 STDAFX.H 中
|
||||
//引用任何所需的附加头文件,而不是在此文件中引用
|
||||
// TODO: 在 STDAFX.H 中
|
||||
//引用任何所需的附加头文件,而不是在此文件中引用
|
||||
|
@ -1,5 +1,5 @@
|
||||
// stdafx.h : 标准系统包含文件的包含文件,
|
||||
// 或是常用但不常更改的项目特定的包含文件
|
||||
// stdafx.h : 标准系统包含文件的包含文件,
|
||||
// 或是常用但不常更改的项目特定的包含文件
|
||||
//
|
||||
|
||||
#pragma once
|
||||
@ -8,7 +8,7 @@
|
||||
//#include <iostream>
|
||||
//#include <tchar.h>
|
||||
|
||||
// TODO: 在此处引用程序要求的附加头文件
|
||||
// TODO: 在此处引用程序要求的附加头文件
|
||||
|
||||
#include "lib_acl.h"
|
||||
#include "acl_cpp/lib_acl.hpp"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "stdafx.h"
|
||||
#include "stdafx.h"
|
||||
#include <string.h>
|
||||
#include <time.h>
|
||||
#include "util.h"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#pragma once
|
||||
#pragma once
|
||||
|
||||
#ifdef MINGW
|
||||
#include <sys/time.h>
|
||||
|
@ -1,12 +1,12 @@
|
||||
#include "stdafx.h"
|
||||
#include "stdafx.h"
|
||||
#include <list>
|
||||
#include <vector>
|
||||
#include <map>
|
||||
#include <stdio.h>
|
||||
#include <iostream>
|
||||
#include <time.h>
|
||||
#include "struct.h" // é<EFBFBD>¢± gson 宸ュå<C2A5>¿é<C2BF><C3A9>规åµ<C3A5> struct.stub æ<>žî„<C3AE>崲鑰屾垚
|
||||
#include "struct.gson.h" // é<EFBFBD>¢± gson 宸ュå<C2A5>¿é<C2BF><C3A9>规åµ<C3A5> struct.stub é<>¢ç†¸åžš
|
||||
#include "struct.h" // 由 gson 工具根据 struct.stub 转换而成
|
||||
#include "struct.gson.h" // 由 gson 工具根据 struct.stub 生成
|
||||
|
||||
static void parse(const char* s)
|
||||
{
|
||||
|
@ -1,8 +1,8 @@
|
||||
// stdafx.cpp : 只包括标准包含文件的源文件
|
||||
// wizard.pch 将成为预编译头
|
||||
// stdafx.obj 将包含预编译类型信息
|
||||
// stdafx.cpp : 只包括标准包含文件的源文件
|
||||
// wizard.pch 将成为预编译头
|
||||
// stdafx.obj 将包含预编译类型信息
|
||||
|
||||
#include "stdafx.h"
|
||||
|
||||
// TODO: 在 STDAFX.H 中
|
||||
//引用任何所需的附加头文件,而不是在此文件中引用
|
||||
// TODO: 在 STDAFX.H 中
|
||||
//引用任何所需的附加头文件,而不是在此文件中引用
|
||||
|
@ -1,5 +1,5 @@
|
||||
// stdafx.h : 标准系统包含文件的包含文件,
|
||||
// 或是常用但不常更改的项目特定的包含文件
|
||||
// stdafx.h : 标准系统包含文件的包含文件,
|
||||
// 或是常用但不常更改的项目特定的包含文件
|
||||
//
|
||||
|
||||
#pragma once
|
||||
@ -8,7 +8,7 @@
|
||||
//#include <iostream>
|
||||
//#include <tchar.h>
|
||||
|
||||
// TODO: 在此处引用程序要求的附加头文件
|
||||
// TODO: 在此处引用程序要求的附加头文件
|
||||
|
||||
#include "lib_acl.h"
|
||||
#include "acl_cpp/lib_acl.hpp"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "stdafx.h"
|
||||
#include "stdafx.h"
|
||||
#include "struct.h"
|
||||
#include "struct.gson.h"
|
||||
namespace acl
|
||||
|
@ -1,4 +1,4 @@
|
||||
namespace acl
|
||||
namespace acl
|
||||
{
|
||||
//files_outdate
|
||||
acl::string gson(const files_outdate &$obj);
|
||||
|
@ -1,14 +1,14 @@
|
||||
#include "stdafx.h"
|
||||
#include "stdafx.h"
|
||||
#include <list>
|
||||
#include <vector>
|
||||
#include <map>
|
||||
#include <stdio.h>
|
||||
#include <iostream>
|
||||
#include <time.h>
|
||||
#include "struct.h" // é<EFBFBD>¢± gson 宸ュå<C2A5>¿é<C2BF><C3A9>规åµ<C3A5> struct.stub æ<>žî„<C3AE>崲鑰屾垚
|
||||
#include "struct.gson.h" // é<EFBFBD>¢± gson 宸ュå<C2A5>¿é<C2BF><C3A9>规åµ<C3A5> struct.stub é<>¢ç†¸åžš
|
||||
#include "struct.h" // 由 gson 工具根据 struct.stub 转换而成
|
||||
#include "struct.gson.h" // 由 gson 工具根据 struct.stub 生成
|
||||
|
||||
// æ<EFBFBD>´å¿“垪é<EFBFBD>–æ ¬ç¹ƒç»‹‹
|
||||
// 序列化过程
|
||||
static void serialize(void)
|
||||
{
|
||||
user u;
|
||||
@ -20,7 +20,7 @@ static void serialize(void)
|
||||
|
||||
acl::json json;
|
||||
|
||||
// ç<EFBFBD><EFBFBD>† user 瀵硅薄æ<E2809E>žî„<C3AE>崲涓º json 瀵硅薄
|
||||
// 将 user 对象转换为 json 对象
|
||||
acl::json_node& node = acl::gson(json, u);
|
||||
|
||||
printf("serialize:\r\n");
|
||||
@ -28,7 +28,7 @@ static void serialize(void)
|
||||
printf("\r\n");
|
||||
}
|
||||
|
||||
// é<EFBFBD>™å¶…ç°é<EFBFBD>’楀寲æ<EFBFBD>©å›©â–¼
|
||||
// 反序列化过程
|
||||
static void deserialize(void)
|
||||
{
|
||||
const char *s = "{\"name\": \"zsxxsz\", \"domain\": \"263.net\", \"age\": 11, \"male\": true, \"n0\": 10, \"n1\": 0, \"n2\": 1, \"n3\": 1.1, \"n4\": 0.0 }";
|
||||
@ -38,10 +38,10 @@ static void deserialize(void)
|
||||
json.update(s);
|
||||
user u;
|
||||
|
||||
// ç<EFBFBD><EFBFBD>† json 瀵硅薄æ<E2809E>žî„<C3AE>崲涓º user 瀵硅薄
|
||||
// 将 json 对象转换为 user 对象
|
||||
std::pair<bool, std::string> ret = acl::gson(json.get_root(), u);
|
||||
|
||||
// æ¿¡å‚›ç<EFBFBD>‰æ<EFBFBD>žî„<EFBFBD>崲澶辫触锛屽垯鎵撳嵃æ<EFBFBD>žî„<EFBFBD>崲澶辫触é<EFBFBD>˜ç†·æ´œ
|
||||
// 如果转换失败,则打印转换失败原因
|
||||
if (ret.first == false)
|
||||
printf("error: %s\r\n", ret.second.c_str());
|
||||
else
|
||||
|
@ -1,8 +1,8 @@
|
||||
// stdafx.cpp : 只包括标准包含文件的源文件
|
||||
// wizard.pch 将成为预编译头
|
||||
// stdafx.obj 将包含预编译类型信息
|
||||
// stdafx.cpp : 只包括标准包含文件的源文件
|
||||
// wizard.pch 将成为预编译头
|
||||
// stdafx.obj 将包含预编译类型信息
|
||||
|
||||
#include "stdafx.h"
|
||||
|
||||
// TODO: 在 STDAFX.H 中
|
||||
//引用任何所需的附加头文件,而不是在此文件中引用
|
||||
// TODO: 在 STDAFX.H 中
|
||||
//引用任何所需的附加头文件,而不是在此文件中引用
|
||||
|
@ -1,5 +1,5 @@
|
||||
// stdafx.h : 标准系统包含文件的包含文件,
|
||||
// 或是常用但不常更改的项目特定的包含文件
|
||||
// stdafx.h : 标准系统包含文件的包含文件,
|
||||
// 或是常用但不常更改的项目特定的包含文件
|
||||
//
|
||||
|
||||
#pragma once
|
||||
@ -8,7 +8,7 @@
|
||||
//#include <iostream>
|
||||
//#include <tchar.h>
|
||||
|
||||
// TODO: 在此处引用程序要求的附加头文件
|
||||
// TODO: 在此处引用程序要求的附加头文件
|
||||
|
||||
#include "lib_acl.h"
|
||||
#include "acl_cpp/lib_acl.hpp"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "stdafx.h"
|
||||
#include "stdafx.h"
|
||||
#include <list>
|
||||
#include <vector>
|
||||
#include <map>
|
||||
|
@ -1,8 +1,8 @@
|
||||
// stdafx.cpp : 只包括标准包含文件的源文件
|
||||
// wizard.pch 将成为预编译头
|
||||
// stdafx.obj 将包含预编译类型信息
|
||||
// stdafx.cpp : 只包括标准包含文件的源文件
|
||||
// wizard.pch 将成为预编译头
|
||||
// stdafx.obj 将包含预编译类型信息
|
||||
|
||||
#include "stdafx.h"
|
||||
|
||||
// TODO: 在 STDAFX.H 中
|
||||
//引用任何所需的附加头文件,而不是在此文件中引用
|
||||
// TODO: 在 STDAFX.H 中
|
||||
//引用任何所需的附加头文件,而不是在此文件中引用
|
||||
|
@ -1,5 +1,5 @@
|
||||
// stdafx.h : 标准系统包含文件的包含文件,
|
||||
// 或是常用但不常更改的项目特定的包含文件
|
||||
// stdafx.h : 标准系统包含文件的包含文件,
|
||||
// 或是常用但不常更改的项目特定的包含文件
|
||||
//
|
||||
|
||||
#pragma once
|
||||
@ -8,7 +8,7 @@
|
||||
//#include <iostream>
|
||||
//#include <tchar.h>
|
||||
|
||||
// TODO: 在此处引用程序要求的附加头文件
|
||||
// TODO: 在此处引用程序要求的附加头文件
|
||||
|
||||
#include "lib_acl.h"
|
||||
#include "acl_cpp/lib_acl.hpp"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "stdafx.h"
|
||||
#include "stdafx.h"
|
||||
#include <list>
|
||||
#include <vector>
|
||||
#include <map>
|
||||
|
@ -1,8 +1,8 @@
|
||||
// stdafx.cpp : 只包括标准包含文件的源文件
|
||||
// wizard.pch 将成为预编译头
|
||||
// stdafx.obj 将包含预编译类型信息
|
||||
// stdafx.cpp : 只包括标准包含文件的源文件
|
||||
// wizard.pch 将成为预编译头
|
||||
// stdafx.obj 将包含预编译类型信息
|
||||
|
||||
#include "stdafx.h"
|
||||
|
||||
// TODO: 在 STDAFX.H 中
|
||||
//引用任何所需的附加头文件,而不是在此文件中引用
|
||||
// TODO: 在 STDAFX.H 中
|
||||
//引用任何所需的附加头文件,而不是在此文件中引用
|
||||
|
@ -1,5 +1,5 @@
|
||||
// stdafx.h : 标准系统包含文件的包含文件,
|
||||
// 或是常用但不常更改的项目特定的包含文件
|
||||
// stdafx.h : 标准系统包含文件的包含文件,
|
||||
// 或是常用但不常更改的项目特定的包含文件
|
||||
//
|
||||
|
||||
#pragma once
|
||||
@ -8,7 +8,7 @@
|
||||
//#include <iostream>
|
||||
//#include <tchar.h>
|
||||
|
||||
// TODO: 在此处引用程序要求的附加头文件
|
||||
// TODO: 在此处引用程序要求的附加头文件
|
||||
|
||||
#include "lib_acl.h"
|
||||
#include "acl_cpp/lib_acl.hpp"
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "stdafx.h"
|
||||
#include "stdafx.h"
|
||||
#include <list>
|
||||
#include <vector>
|
||||
#include <map>
|
||||
|
@ -1,8 +1,8 @@
|
||||
// stdafx.cpp : 只包括标准包含文件的源文件
|
||||
// wizard.pch 将成为预编译头
|
||||
// stdafx.obj 将包含预编译类型信息
|
||||
// stdafx.cpp : 只包括标准包含文件的源文件
|
||||
// wizard.pch 将成为预编译头
|
||||
// stdafx.obj 将包含预编译类型信息
|
||||
|
||||
#include "stdafx.h"
|
||||
|
||||
// TODO: 在 STDAFX.H 中
|
||||
//引用任何所需的附加头文件,而不是在此文件中引用
|
||||
// TODO: 在 STDAFX.H 中
|
||||
//引用任何所需的附加头文件,而不是在此文件中引用
|
||||
|
@ -1,5 +1,5 @@
|
||||
// stdafx.h : 标准系统包含文件的包含文件,
|
||||
// 或是常用但不常更改的项目特定的包含文件
|
||||
// stdafx.h : 标准系统包含文件的包含文件,
|
||||
// 或是常用但不常更改的项目特定的包含文件
|
||||
//
|
||||
|
||||
#pragma once
|
||||
@ -8,7 +8,7 @@
|
||||
//#include <iostream>
|
||||
//#include <tchar.h>
|
||||
|
||||
// TODO: 在此处引用程序要求的附加头文件
|
||||
// TODO: 在此处引用程序要求的附加头文件
|
||||
|
||||
#include "lib_acl.h"
|
||||
#include "acl_cpp/lib_acl.hpp"
|
||||
|
@ -1,14 +1,14 @@
|
||||
#include "stdafx.h"
|
||||
#include "stdafx.h"
|
||||
#include <list>
|
||||
#include <vector>
|
||||
#include <map>
|
||||
#include <stdio.h>
|
||||
#include <iostream>
|
||||
#include <time.h>
|
||||
#include "struct.h" // é<EFBFBD>¢± gson 宸ュå<C2A5>¿é<C2BF><C3A9>规åµ<C3A5> struct.stub æ<>žî„<C3AE>崲鑰屾垚
|
||||
#include "struct.gson.h" // é<EFBFBD>¢± gson 宸ュå<C2A5>¿é<C2BF><C3A9>规åµ<C3A5> struct.stub é<>¢ç†¸åžš
|
||||
#include "struct.h" // 由 gson 工具根据 struct.stub 转换而成
|
||||
#include "struct.gson.h" // 由 gson 工具根据 struct.stub 生成
|
||||
|
||||
// æ<EFBFBD>´å¿“垪é<EFBFBD>–æ ¬ç¹ƒç»‹‹
|
||||
// 序列化过程
|
||||
static void serialize(void)
|
||||
{
|
||||
user u;
|
||||
@ -17,15 +17,15 @@ static void serialize(void)
|
||||
u.age = 11;
|
||||
u.male = true;
|
||||
|
||||
u.province_name = "ç<EFBFBD>žå<EFBFBD>˜ç¬¢é<EFBFBD>ª<EFBFBD>";
|
||||
u.position = "ç<EFBFBD>žå<EFBFBD>˜ç¬¢é<EFBFBD>ª<EFBFBD>";
|
||||
u.province_name = "山东省";
|
||||
u.position = "山东省";
|
||||
|
||||
u.shcool = "ç<EFBFBD>žå<EFBFBD>˜ç¬¢å®¸ãƒ¤ç¬Ÿæ¾¶Ñƒî„Ÿ";
|
||||
u.class_name = "é<EFBFBD>‘é<EFBFBD>žå—•ç¬“涓š";
|
||||
u.shcool = "山东工业大学";
|
||||
u.class_name = "热处理专业";
|
||||
|
||||
acl::json json;
|
||||
|
||||
// ç<EFBFBD><EFBFBD>† user 瀵硅薄æ<E2809E>žî„<C3AE>崲涓º json 瀵硅薄
|
||||
// 将 user 对象转换为 json 对象
|
||||
acl::json_node& node = acl::gson(json, u);
|
||||
|
||||
printf("serialize:\r\n");
|
||||
@ -33,20 +33,20 @@ static void serialize(void)
|
||||
printf("\r\n");
|
||||
}
|
||||
|
||||
// é<EFBFBD>™å¶…ç°é<EFBFBD>’楀寲æ<EFBFBD>©å›©â–¼
|
||||
// 反序列化过程
|
||||
static void deserialize(void)
|
||||
{
|
||||
const char *s = "{\"shcool\": \"ç<EFBFBD>žå<EFBFBD>˜ç¬¢å®¸ãƒ¤ç¬Ÿæ¾¶Ñƒî„Ÿ\", \"class_name\": \"é<EFBFBD>‘é<EFBFBD>žå—•ç¬“涓æ•", \"province_name\": \"ç<EFBFBD>žå<EFBFBD>˜ç¬¢é<EFBFBD>ªä¹—", \"position\": \"ç<EFBFBD>žå<EFBFBD>˜ç¬¢é<EFBFBD>ªä¹—", \"name\": \"zsxxsz\", \"nicks\": [\"\", \"澶т粰\"], \"age\": 11, \"male\": true, \"ages\": [1, 2, 3, 4, 5] }";
|
||||
const char *s = "{\"shcool\": \"山东工业大学\", \"class_name\": \"热处理专业\", \"province_name\": \"山东省\", \"position\": \"山东省\", \"name\": \"zsxxsz\", \"nicks\": [\"\", \"大仙\"], \"age\": 11, \"male\": true, \"ages\": [1, 2, 3, 4, 5] }";
|
||||
printf("deserialize:\r\n");
|
||||
|
||||
acl::json json;
|
||||
json.update(s);
|
||||
user u;
|
||||
|
||||
// ç<EFBFBD><EFBFBD>† json 瀵硅薄æ<E2809E>žî„<C3AE>崲涓º user 瀵硅薄
|
||||
// 将 json 对象转换为 user 对象
|
||||
std::pair<bool, std::string> ret = acl::gson(json.get_root(), u);
|
||||
|
||||
// æ¿¡å‚›ç<EFBFBD>‰æ<EFBFBD>žî„<EFBFBD>崲澶辫触锛屽垯鎵撳嵃æ<EFBFBD>žî„<EFBFBD>崲澶辫触é<EFBFBD>˜ç†·æ´œ
|
||||
// 如果转换失败,则打印转换失败原因
|
||||
if (ret.first == false)
|
||||
{
|
||||
printf("error: %s\r\n", ret.second.c_str());
|
||||
@ -84,20 +84,20 @@ static void test1(void)
|
||||
(*m).height = 170;
|
||||
(*m).name = "";
|
||||
(*m).nicks.push_back("");
|
||||
(*m).nicks.push_back("澶т粰");
|
||||
(*m).nicks.push_back("大仙");
|
||||
(*m).age = 11;
|
||||
(*m).male = true;
|
||||
|
||||
(*m).province_name = "ç<EFBFBD>žå<EFBFBD>˜ç¬¢é<EFBFBD>ª<EFBFBD>";
|
||||
(*m).position = "ç<EFBFBD>žå<EFBFBD>˜ç¬¢é<EFBFBD>ª<EFBFBD>";
|
||||
(*m).province_name = "山东省";
|
||||
(*m).position = "山东省";
|
||||
|
||||
(*m).shcool = "ç<EFBFBD>žå<EFBFBD>˜ç¬¢å®¸ãƒ¤ç¬Ÿæ¾¶Ñƒî„Ÿ";
|
||||
(*m).class_name = "é<EFBFBD>‘é<EFBFBD>žå—•ç¬“涓š";
|
||||
(*m).shcool = "山东工业大学";
|
||||
(*m).class_name = "热处理专业";
|
||||
|
||||
obj.m = m;
|
||||
acl::json json;
|
||||
|
||||
// ç<EFBFBD><EFBFBD>† user 瀵硅薄æ<E2809E>žî„<C3AE>崲涓º json 瀵硅薄
|
||||
// 将 user 对象转换为 json 对象
|
||||
acl::json_node& node = acl::gson(json, obj.m);
|
||||
|
||||
printf("serialize:\r\n");
|
||||
@ -109,17 +109,17 @@ static void test1(void)
|
||||
|
||||
static void test2(void)
|
||||
{
|
||||
const char *s = "{\"shcool\": \"ç<EFBFBD>žå<EFBFBD>˜ç¬¢å®¸ãƒ¤ç¬Ÿæ¾¶Ñƒî„Ÿ\", \"class_name\": \"é<EFBFBD>‘é<EFBFBD>žå—•ç¬“涓æ•", \"province_name\": \"ç<EFBFBD>žå<EFBFBD>˜ç¬¢é<EFBFBD>ªä¹—", \"position\": \"ç<EFBFBD>žå<EFBFBD>˜ç¬¢é<EFBFBD>ªä¹—", \"name\": \"zsxxsz\", \"age\": 11, \"male\": true, \"favorite\": \"pingpang\", \"height\": 170, \"ages\": [1, 2, 3, 4, 5]}";
|
||||
const char *s = "{\"shcool\": \"山东工业大学\", \"class_name\": \"热处理专业\", \"province_name\": \"山东省\", \"position\": \"山东省\", \"name\": \"zsxxsz\", \"age\": 11, \"male\": true, \"favorite\": \"pingpang\", \"height\": 170, \"ages\": [1, 2, 3, 4, 5]}";
|
||||
printf("deserialize:\r\n");
|
||||
|
||||
acl::json json;
|
||||
json.update(s);
|
||||
user_male u;
|
||||
|
||||
// ç<EFBFBD><EFBFBD>† json 瀵硅薄æ<E2809E>žî„<C3AE>崲涓º user 瀵硅薄
|
||||
// 将 json 对象转换为 user 对象
|
||||
std::pair<bool, std::string> ret = acl::gson(json.get_root(), u);
|
||||
|
||||
// æ¿¡å‚›ç<EFBFBD>‰æ<EFBFBD>žî„<EFBFBD>崲澶辫触锛屽垯鎵撳嵃æ<EFBFBD>žî„<EFBFBD>崲澶辫触é<EFBFBD>˜ç†·æ´œ
|
||||
// 如果转换失败,则打印转换失败原因
|
||||
if (ret.first == false)
|
||||
printf("error: %s\r\n", ret.second.c_str());
|
||||
else
|
||||
|
@ -1,8 +1,8 @@
|
||||
// stdafx.cpp : 只包括标准包含文件的源文件
|
||||
// wizard.pch 将成为预编译头
|
||||
// stdafx.obj 将包含预编译类型信息
|
||||
// stdafx.cpp : 只包括标准包含文件的源文件
|
||||
// wizard.pch 将成为预编译头
|
||||
// stdafx.obj 将包含预编译类型信息
|
||||
|
||||
#include "stdafx.h"
|
||||
|
||||
// TODO: 在 STDAFX.H 中
|
||||
//引用任何所需的附加头文件,而不是在此文件中引用
|
||||
// TODO: 在 STDAFX.H 中
|
||||
//引用任何所需的附加头文件,而不是在此文件中引用
|
||||
|
@ -1,5 +1,5 @@
|
||||
// stdafx.h : 标准系统包含文件的包含文件,
|
||||
// 或是常用但不常更改的项目特定的包含文件
|
||||
// stdafx.h : 标准系统包含文件的包含文件,
|
||||
// 或是常用但不常更改的项目特定的包含文件
|
||||
//
|
||||
|
||||
#pragma once
|
||||
@ -8,7 +8,7 @@
|
||||
//#include <iostream>
|
||||
//#include <tchar.h>
|
||||
|
||||
// TODO: 在此处引用程序要求的附加头文件
|
||||
// TODO: 在此处引用程序要求的附加头文件
|
||||
|
||||
#include "lib_acl.h"
|
||||
#include "acl_cpp/lib_acl.hpp"
|
||||
|
@ -1,14 +1,14 @@
|
||||
#include "stdafx.h"
|
||||
#include "stdafx.h"
|
||||
#include <list>
|
||||
#include <vector>
|
||||
#include <map>
|
||||
#include <stdio.h>
|
||||
#include <iostream>
|
||||
#include <time.h>
|
||||
#include "struct.h" // é<EFBFBD>¢± gson 宸ュå<C2A5>¿é<C2BF><C3A9>规åµ<C3A5> struct.stub æ<>žî„<C3AE>崲鑰屾垚
|
||||
#include "struct.gson.h" // é<EFBFBD>¢± gson 宸ュå<C2A5>¿é<C2BF><C3A9>规åµ<C3A5> struct.stub é<>¢ç†¸åžš
|
||||
#include "struct.h" // 由 gson 工具根据 struct.stub 转换而成
|
||||
#include "struct.gson.h" // 由 gson 工具根据 struct.stub 生成
|
||||
|
||||
// æ<EFBFBD>´å¿“垪é<EFBFBD>–æ ¬ç¹ƒç»‹‹
|
||||
// 序列化过程
|
||||
static void serialize(void)
|
||||
{
|
||||
user u;
|
||||
@ -37,7 +37,7 @@ static void serialize(void)
|
||||
|
||||
acl::json json;
|
||||
|
||||
// ç<EFBFBD><EFBFBD>† user 瀵硅薄æ<E2809E>žî„<C3AE>崲涓º json 瀵硅薄
|
||||
// 将 user 对象转换为 json 对象
|
||||
acl::json_node& node = acl::gson(json, u);
|
||||
|
||||
printf(">> serialize:\r\n");
|
||||
@ -45,7 +45,7 @@ static void serialize(void)
|
||||
printf("\r\n");
|
||||
}
|
||||
|
||||
// é<EFBFBD>™å¶…ç°é<EFBFBD>’楀寲æ<EFBFBD>©å›©â–¼
|
||||
// 反序列化过程
|
||||
static void deserialize(void)
|
||||
{
|
||||
const char *s = "{\"name\": \"zsxxsz\", \"domain\": \"263.net\", \"age\": 11, \"male\": true, \"names\": [{\"zsx1\": [\"zsx11\", \"zsx12\", \"zsx13\", \"zsx14\"]}, {\"zsx2\": [\"zsx21\", \"zsx22\", \"zsx23\", \"zsx24\"]}], \"values5\": [100, 1000, 10000]}";
|
||||
@ -56,10 +56,10 @@ static void deserialize(void)
|
||||
|
||||
printf(">> deserialize:\r\n");
|
||||
|
||||
// ç<EFBFBD><EFBFBD>† json 瀵硅薄æ<E2809E>žî„<C3AE>崲涓º user 瀵硅薄
|
||||
// 将 json 对象转换为 user 对象
|
||||
std::pair<bool, std::string> ret = acl::gson(json.get_root(), u);
|
||||
|
||||
// æ¿¡å‚›ç<EFBFBD>‰æ<EFBFBD>žî„<EFBFBD>崲澶辫触锛屽垯鎵撳嵃æ<EFBFBD>žî„<EFBFBD>崲澶辫触é<EFBFBD>˜ç†·æ´œ
|
||||
// 如果转换失败,则打印转换失败原因
|
||||
if (ret.first == false)
|
||||
{
|
||||
printf("error: %s\r\n", ret.second.c_str());
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user