本文整理汇总了Java中com.mysql.fabric.xmlrpc.base.ResponseParser类的典型用法代码示例。如果您正苦于以下问题:Java ResponseParser类的具体用法?Java ResponseParser怎么用?Java ResponseParser使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ResponseParser类属于com.mysql.fabric.xmlrpc.base包,在下文中一共展示了ResponseParser类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: execute
import com.mysql.fabric.xmlrpc.base.ResponseParser; //导入依赖的package包/类
public MethodResponse execute(MethodCall methodCall) throws IOException, ParserConfigurationException, SAXException, MySQLFabricException {
HttpURLConnection connection = null;
try {
connection = (HttpURLConnection) this.url.openConnection();
connection.setRequestMethod("POST");
connection.setRequestProperty("User-Agent", "MySQL XML-RPC");
connection.setRequestProperty("Content-Type", "text/xml");
connection.setUseCaches(false);
connection.setDoInput(true);
connection.setDoOutput(true);
// apply headers
for (Map.Entry<String, String> entry : this.headers.entrySet()) {
connection.setRequestProperty(entry.getKey(), entry.getValue());
}
String out = methodCall.toString();
// Send request
OutputStream os = connection.getOutputStream();
os.write(out.getBytes());
os.flush();
os.close();
// Get Response
InputStream is = connection.getInputStream();
SAXParserFactory factory = SAXParserFactory.newInstance();
SAXParser parser = factory.newSAXParser();
ResponseParser saxp = new ResponseParser();
parser.parse(is, saxp);
is.close();
MethodResponse resp = saxp.getMethodResponse();
if (resp.getFault() != null) {
throw new MySQLFabricException(resp.getFault());
}
return resp;
} finally {
if (connection != null) {
connection.disconnect();
}
}
}
示例2: execute
import com.mysql.fabric.xmlrpc.base.ResponseParser; //导入依赖的package包/类
public MethodResponse execute(MethodCall methodCall) throws IOException,
ParserConfigurationException, SAXException, MySQLFabricException {
HttpURLConnection connection = null;
try {
connection = (HttpURLConnection) this.url.openConnection();
connection.setRequestMethod("POST");
connection.setRequestProperty("User-Agent", "MySQL XML-RPC");
connection.setRequestProperty("Content-Type", "text/xml");
connection.setUseCaches(false);
connection.setDoInput(true);
connection.setDoOutput(true);
// apply headers
for (Map.Entry<String, String> entry : headers.entrySet()) {
connection.setRequestProperty(entry.getKey(), entry.getValue());
}
String out = methodCall.toString();
// Send request
OutputStream os = connection.getOutputStream();
os.write(out.getBytes());
os.flush();
os.close();
// Get Response
InputStream is = connection.getInputStream();
SAXParserFactory factory = SAXParserFactory.newInstance();
SAXParser parser = factory.newSAXParser();
ResponseParser saxp = new ResponseParser();
parser.parse(is, saxp);
is.close();
MethodResponse resp = saxp.getMethodResponse();
if (resp.getFault() != null) {
throw new MySQLFabricException(resp.getFault());
}
return resp;
} finally {
if (connection != null) {
connection.disconnect();
}
}
}