我正在寻找一种简单的解决方案来在两个java程序之间传递属性/对象的值。程序是相同的(在分离的节点上运行),并且不能通过调用方法来设置/获取变量。他们只能通过文件或网络等外部渠道进行通信。应该共享许多不同的对象。我的想法是将数据作为文本传递并使用xml进行编码/解码。我也可以发送一个对象及其类的名称。
我的问题是:decode方法返回Object类型的变量。我要将值移动到目标对象但没有强制转换我得到编译器错误'不兼容的强制转换'。所以我要做一个演员。但是有很多可能的对象,我要做一大堆if或switch语句。我有类的名字,做一些动态演员会很好。
这个主题讨论了类似的主题并建议使用Class.cast(),但我没有成功:
java: how can i do dynamic casting of a variable from one type to another?
我更喜欢这里面向代码的问题:
Object decode( String str )
{
return( str );
}
String in = "abc";
String out;
// out = decode( in ); // compiler error 'incompatible types'
// out = (String)decode( in ); // normal cast but I'm looking for dynamic one
// out = ('String')decode( in ); // it would be perfect
干杯, 安妮
答案 0 :(得分:3)
如果您的问题是在代码示例中注释的assign指令,则可以使用泛型实现:
public <T> T decode(String str) {
... decode logic
return (T)decodedObject;
}
这种方法可以让你做类似的事情:
public void foo1(String bar) {
String s = decode(par);
}
public void foo2(String bar) {
Integer s = decode(par);
}
<T> T decode(String serializedRepresentation) {
Object inflatedObject;
// logic to unserialize object
return (T)inflatedObject;
}
答案 1 :(得分:0)
如果您已经在传递XML,那么为什么不使用JAXB来编组和解组文本
http://docs.oracle.com/javase/tutorial/jaxb/intro/examples.html
但是如果你说两个程序都是java,那么使用RMI
http://www.javacoffeebreak.com/articles/javarmi/javarmi.html
http://docs.oracle.com/javase/6/docs/technotes/guides/rmi/hello/hello-world.html
答案 2 :(得分:0)
您可以使用泛型:
public static <T> T decode(Class<T> c, String str) {
return (T)str;
}
...
Class<?> c = Class.forName(className); // throws CNFE
out = decode(String.class, in);
当然,你的解码方法需要做更多的事情。
答案 3 :(得分:0)
你可以选择这样的东西
public static <T> T decode(T obj) {
return (T)(obj);
}
public static void main(String [] args){
Integer int1 = decode(123);
String str1 = decode("abc");
}