RMI ResultSet对象传递

时间:2016-02-02 02:47:59

标签: java

我一直在努力将JDBC与RMI连接起来。因为我需要将数据库结果检索到客户端控制台屏幕。我想将ResultSet对象从Remote方法传递给客户端。我不知道该怎么做。救命啊!

if ($_FILES["uploadedfile"]["type"] != "text/plain") {
   // File not the right type ... do not permit upload
}

1 个答案:

答案 0 :(得分:0)

您无法通过Resultset,而Serializable不是Serializable。从Resultset获取值到普通java对象,即aSum = newArray.reduce((a, b) => a + b, 0);并传递该对象。

看一下oracle documentation

如果您需要示例代码来实现此目的,请查看SE问题:

How to pass object in arguments in RMI method?