0

我正在实施一个银行系统,我想向ResultSet客户发送一个。但是Java向我显示了一个错误。

    public interface SekelatonInterface extends Remote {

    public String test() throws RemoteException; // this is ok it works fine

    public ConnectionClass getConnection() throws RemoteException; //shows error on     client call

     public ResultSet getAllDeposits(Integer CustomerId) throws RemoteException;
  }

  public class SekelatonImpl extends UnicastRemoteObject implements SekelationInterface {



   SekelatonImpl() throws RemoteException{

   }

              //sekelaton implemeation
    public ConnectionClass getConnection() {

    try {
     dbobject = new ConnectionClass();
      dbobject.connectDb();
     dbObject.setQuery("select * from cutomer"); 
      return dbobject; //this method is on connection class ,dont be confuse

     }

     catch(Exception ex)

           {

        System.out.println("Error :"+ex.getMessage());
           }

    }

  }

   public class Server {


   public  void PackServerandRun(String SecurityFilePath,Integer port,String rmiUrl) {


   //do rmi registery stuff and run server
    SekelatonImpl  databaseObject = new SekelationImpl(); // rebind this object

    }

}
    cleintstub.test(); //this recive the server message or works fine
    cleintStub.getConnection(); //why couldn't i get a ConnectionClass Object ?

当我运行客户端时,我看到的错误是:

注册表查找有错误解组返回标头错误;嵌套异常是:java.io.EOFException

4

2 回答 2

0

我想发送一个ResultSet

运气不好,你不能。ResultSet不是Serializable

或连接对象到客户端,实际上后者不是好主意。

这不仅不是一个“好主意”,而且是一个完全没有意义的主意。您不能通过电话线发送电话。同样,您不能通过另一个连接发送连接。更不用说事实Connection并非如此Serializable

但是,Java 向我显示了一个错误。

下次您在任何地方发布问题报告时,请确保包含实际问题,包括错误消息、逐字记录、剪切粘贴、非手动转录,以及源代码的相关部分,必要时提供行号指示,以及预期和实际输出。

catch(){
   }

永远不要忽略异常。否则,您会将调试变成单纯的猜谜游戏。

于 2013-05-29T09:02:54.770 回答
-1

好的,在我完成一些研究后,我将尝试回答我自己的问题,我已经解决了这些问题。

错误是发送未序列化的对象。

由于,ResultSet 不支持序列化,我还创建了一个模型类和模型类对象的返回列表给客户端。通过将序列化添加到您想要作为参数传输的每个类,并且还包括您的骨架实现序列化,请注意所有类都需要在客户端定义。

 public class ConnectionClass implements java.io.Serializable {

 }

public interface SekelatonInterface extends Remote ,java.io.Serializable{

public Login getTestClass()throws RemoteException;

public String test() throws RemoteException;

public List<Login> getConnection() throws RemoteException;

public void sayHitoServer(String messages) throws RemoteException;

}
public class SkeletonInterfaceImpl extends UnicastRemoteObject implements      SekelatonInterface,Serializable {

  //implement all your skeleton methods
 }

 //this to change result set into model class to transefer it to client

public class Login {

private int Id;

private String Username;

private String Password;

public Login() {

}

public int getId() {
    return Id;
}

public void setId(int Id) {
    this.Id = Id;
}

public String getUsername() {
    return Username;
}

public void setUsername(String Username) {
    this.Username = Username;
}

public String getPassword() {
    return Password;
}

public void setPassword(String Password) {
    this.Password = Password;
}

public Login(ResultSet resultset){
    try{
    // resultset.next();
  Id = resultset.getInt("LoginId");
  Username =resultset.getString("Uname");
  Password = resultset.getString("Password");
          }
    catch(Exception ex){
    JOptionPane.showMessageDialog(null, "Error Setting Up Login"+ex.getMessage());

     }
   }
}

所有上述方法都可以正常工作。但是,这里的问题是我想将模型类列表绑定到 jtable 模型。如何传递适合 TableModel 的列?

于 2013-05-30T08:26:40.957 回答