applet中使用URLConnection获取远程对象

服务器端:

@RequestMapping("/obtainUser")
public voidobtainUser(Integer uid, HttpServletResponse response)
            throws IOException {
       //假设一用户实例
        User user = userService.get(uid); 
     
        ObjectOutputStream objstream = new ObjectOutputStream(response.getOutputStream());
        objstream.writeObject(user);
        objstream.flush();
}        

applet端:

使用这种方式时,需要将远程获取的POJO类一同打包

private User obtainRemoteUser(Integer uid){
URL url = new URL(getCodeBase(),"/obtainUser?uid=" + uid + ""); URLConnection conn = url.openConnection(); conn.setUseCaches(false);
conn.setRequestProperty("Cookie", "JSESSIONID="+sid); //使用firefox时会使用session丢失,对于一些有登录要求的系统将不能获取远程对象
ObjectInputStream objstream = new ObjectInputStream(conn.getInputStream()); User user= (User) objstream.readObject(); return user; }

 

posted on 2017-03-13 10:24  西风古道 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/g120992880/p/6541492.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值