자바 xml rpc 가 openerp 에 접근 하 는 상세 한 예
어이 가 없어 서 doc.openerp.com 을 참고 하여 연구 할 수 밖 에 없습니다.
이 안 에는 자바 xml rpc 의 login 과 list db 예 만 있 지만 중요 한 대상 읽 기와 쓰기 동작 은 언급 되 지 않 았 습 니 다.
제 가 테스트 한 예 를 공유 하 겠 습 니 다.자바 어 는 더 이상 벽 에 부 딪 히 지 않 아 도 됩 니 다.
간단하게 말하자면,여 기 는 자신의 대상 x 를 정의 한다test,두 속성 만,xname 과 xdesc
간단하게 코드 를 붙 였 는데..
업데이트 설명,여 기 는 apache 의 xml rpc 패 키 지 를 사용 해 야 합 니 다.apache 사이트 에서 다운로드 하 십시오.게다가 ok 입 니 다.
import java.net.MalformedURLException;
import java.net.URL;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Vector;
import org.apache.xmlrpc.XmlRpcException;
import org.apache.xmlrpc.client.XmlRpcClient;
import org.apache.xmlrpc.client.XmlRpcClientConfigImpl;
public class xmltest {
/**
* @param args
* @throws MalformedURLException
*/
public static void main(String[] args) throws MalformedURLException {
// TODO Auto-generated method stub
// getDatabaseList("127.0.0.1",8069);
// createObject();
// searchObject();
// readData();
readView();
}
public static Vector<String> getDatabaseList(String host, int port)
throws MalformedURLException {
XmlRpcClient xmlrpcDb = new XmlRpcClient();
XmlRpcClientConfigImpl xmlrpcConfgDb = new XmlRpcClientConfigImpl();
xmlrpcConfgDb.setEnabledForExceptions(true);
xmlrpcConfgDb.setServerURL(new URL("http", host, port, "/xmlrpc/db"));
xmlrpcDb.setConfig(xmlrpcConfgDb);
Vector<String> res = new Vector<String>();
try {
Vector<Object> params = new Vector<Object>();
Object result = xmlrpcDb.execute("list", params);
Object[] a = (Object[]) result;
for (int i = 0; i < a.length; i++) {
res.addElement((String) a[i]);
System.out.println((String) a[i]);
}
} catch (Exception e) {
e.printStackTrace();
}
return res;
}
public int Connect(String host, int port, String tinydb, String login,
String password) throws Exception {
XmlRpcClient xmlrpclogin = new XmlRpcClient();
XmlRpcClientConfigImpl xmlrpcConfigLogin = new XmlRpcClientConfigImpl();
xmlrpcConfigLogin.setEnabledForExceptions(true);
xmlrpcConfigLogin.setServerURL(new URL("http", host, port,
"/xmlrpc/common"));
xmlrpclogin.setConfig(xmlrpcConfigLogin);
try {
Object[] params = new Object[] { tinydb, login, password };
Object id = xmlrpclogin.execute("login", params);
if (id instanceof Integer)
return (Integer) id;
return -1;
} catch (Exception e) {
e.printStackTrace();
}
return -1;
}
public static void createObject() throws MalformedURLException {
XmlRpcClient xmlrpc = new XmlRpcClient();
XmlRpcClientConfigImpl xmlrpcConfgDb = new XmlRpcClientConfigImpl();
xmlrpcConfgDb.setEnabledForExceptions(true);
xmlrpcConfgDb.setServerURL(new URL(
"http://localhost:8069/xmlrpc/object"));
xmlrpc.setConfig(xmlrpcConfgDb);
String dbname = "openerp";
int uid = 1;
String pwd = "000000";
String model = "x_test";
HashMap<String, Object> values = new HashMap<String, Object>();
values.put("x_name", "Monsieur");
// values.put("x_desc", "bbbb");
// Object[] params = new Object[] { dbname, uid, pwd, model,"create",
// values };
Object[] params = new Object[] { "openerp", 1, "000000", "x_test",
"create", values };
try {
xmlrpc.execute("execute", params);
} catch (Exception e) {
e.printStackTrace();
}
}
public static void searchObject() throws MalformedURLException {
XmlRpcClient xmlrpc = new XmlRpcClient();
XmlRpcClientConfigImpl xmlrpcConfgDb = new XmlRpcClientConfigImpl();
xmlrpcConfgDb.setEnabledForExceptions(true);
xmlrpcConfgDb.setServerURL(new URL(
"http://localhost:8069/xmlrpc/object"));
xmlrpc.setConfig(xmlrpcConfgDb);
String dbname = "openerp";
int uid = 1;
String pwd = "000000";
String model = "x_test";
/*
* ArrayList<String> l = new ArrayList<String>(); l.add("x_name");
* l.add("="); l.add("a"); ArrayList filters = new ArrayList();
*/
Object[] l = { "x_name", "=", "a" };
Object[] filters = { l };
// filters.add(l);
Object[] params = new Object[] { "openerp", 1, "000000", "x_test",
"search", filters };
try {
Object[] o = (Object[]) xmlrpc.execute("execute", params);
System.out.println("finished");
// System.out.println(o.length);
for (Object obj : o) {
System.out.println(obj);
}
} catch (Exception e) {
e.printStackTrace();
}
}
public static void readData() throws MalformedURLException {
Object[] ids = { 2, 3 };
Object[] fields = { "x_name", "x_desc" };
XmlRpcClient xmlrpc = new XmlRpcClient();
XmlRpcClientConfigImpl xmlrpcConfgDb = new XmlRpcClientConfigImpl();
xmlrpcConfgDb.setEnabledForExceptions(true);
xmlrpcConfgDb.setServerURL(new URL(
"http://localhost:8069/xmlrpc/object"));
xmlrpc.setConfig(xmlrpcConfgDb);
String dbname = "openerp";
int uid = 1;
String pwd = "000000";
String model = "x_test";
Object[] params = new Object[] { "openerp", 1, "000000", "x_test",
"read", ids, fields };
try {
Object[] o = (Object[]) xmlrpc.execute("execute", params);
System.out.println("finished");
// System.out.println(o.length);
for (Object obj : o) {
System.out.println(obj);
}
} catch (Exception e) {
e.printStackTrace();
}
}
public static void readView() throws MalformedURLException {
Object[] ids = { 1276 };
Object[] fields = { "arch" };
XmlRpcClient xmlrpc = new XmlRpcClient();
XmlRpcClientConfigImpl xmlrpcConfgDb = new XmlRpcClientConfigImpl();
xmlrpcConfgDb.setEnabledForExceptions(true);
xmlrpcConfgDb.setServerURL(new URL(
"http://localhost:8069/xmlrpc/object"));
xmlrpc.setConfig(xmlrpcConfgDb);
String dbname = "openerp";
int uid = 1;
String pwd = "000000";
String model = "x_test";
Object[] params = new Object[] { "openerp", 1, "000000", "ir.ui.view",
"read", ids, fields };
try {
Object[] o = (Object[]) xmlrpc.execute("execute", params);
// System.out.println("finished");
System.out.println(o.length);
for (Object obj : o) {
// System.out.println(obj);
HashMap h = (HashMap)obj;
//System.out.println(h.keySet().size());
System.out.println("the id is:");
System.out.println(h.get("id"));
System.out.println("the arch is:");
System.out.println(h.get("arch"));
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.