获取当前应用的名称
返回结果
接口定义
- String getIndexName()
获取错误信息
参数描述
返回结果
异常描述
IOException
ClientProtocolException
接口定义
- String getErrorMessage(int page, int pageSize) throws ClientProtocolException, IOException
获取上次请求的信息
返回结果
接口定义
- String getDebugInfo()
应用操作示例
通过OpenSearch控制台也可以完成应用创建、查看、修改等操作,在SDK中也提供了部分操作应用的接口。下面带大家逐一看一下各个接口的使用方式。首先我们实例化一个应用类,很简单
[backcolor=transparent]
[font='YaHei Consolas Hybrid', Consolas, 'Meiryo UI', 'Malgun Gothic', 'Segoe UI', 'Trebuchet MS', Helvetica, monospace, monospace]CloudsearchIndex[backcolor=transparent]
[font='YaHei Consolas Hybrid', Consolas, 'Meiryo UI', 'Malgun Gothic', 'Segoe UI', 'Trebuchet MS', Helvetica, monospace, monospace] app [backcolor=transparent]
[font='YaHei Consolas Hybrid', Consolas, 'Meiryo UI', 'Malgun Gothic', 'Segoe UI', 'Trebuchet MS', Helvetica, monospace, monospace]=[backcolor=transparent]
[font='YaHei Consolas Hybrid', Consolas, 'Meiryo UI', 'Malgun Gothic', 'Segoe UI', 'Trebuchet MS', Helvetica, monospace, monospace] [backcolor=transparent]
[font='YaHei Consolas Hybrid', Consolas, 'Meiryo UI', 'Malgun Gothic', 'Segoe UI', 'Trebuchet MS', Helvetica, monospace, monospace]new[backcolor=transparent]
[font='YaHei Consolas Hybrid', Consolas, 'Meiryo UI', 'Malgun Gothic', 'Segoe UI', 'Trebuchet MS', Helvetica, monospace, monospace] [backcolor=transparent]
[font='YaHei Consolas Hybrid', Consolas, 'Meiryo UI', 'Malgun Gothic', 'Segoe UI', 'Trebuchet MS', Helvetica, monospace, monospace]CloudsearchIndex[backcolor=transparent]
[font='YaHei Consolas Hybrid', Consolas, 'Meiryo UI', 'Malgun Gothic', 'Segoe UI', 'Trebuchet MS', Helvetica, monospace, monospace]([backcolor=transparent]
[font='YaHei Consolas Hybrid', Consolas, 'Meiryo UI', 'Malgun Gothic', 'Segoe UI', 'Trebuchet MS', Helvetica, monospace, monospace]"sdk_user_demo"[backcolor=transparent]
[font='YaHei Consolas Hybrid', Consolas, 'Meiryo UI', 'Malgun Gothic', 'Segoe UI', 'Trebuchet MS', Helvetica, monospace, monospace],[backcolor=transparent]
[font='YaHei Consolas Hybrid', Consolas, 'Meiryo UI', 'Malgun Gothic', 'Segoe UI', 'Trebuchet MS', Helvetica, monospace, monospace]client[backcolor=transparent]
[font='YaHei Consolas Hybrid', Consolas, 'Meiryo UI', 'Malgun Gothic', 'Segoe UI', 'Trebuchet MS', Helvetica, monospace, monospace]);
[font=PingFangSC, 'helvetica neue', 'hiragino sans gb', arial, 'microsoft yahei ui', 'microsoft yahei', simsun, sans-serif]其中client的实例化可以在CloudsearchClient类的示例中查看,这里不再重复。