网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 论文素材 设计下载 最新论文 下载排行 论文上传 在线投稿 联系我们
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > JSP > 正文
J2ME/J2EE实现用户登录交互
来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 12/11/29
下载{$ArticleTitle}原创论文样式

1 2 下一页

  实现功能:

  用手机客户端进行登录服务器,然后返回消息进行交互.

  服务器代码:

LoginServlet:
package com;
import Java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/** *//*******************************************************************************
*
* @author zdw
*
*/
@SuppressWarnings("serial")
public class LoginServlet extends HttpServlet
{
  public void doGet(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, IOException
  {
    this.doPost(request, response);
  }
  public void doPost(HttpServletRequest request, HttpServletResponse response)
      throws ServletException, IOException
  {
    // 得到客户端传入的数据(用户名和密码)
    String username = request.getParameter("username");
    String password = request.getParameter("password");
    // 构建输出流
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    DataOutputStream dos = new DataOutputStream(baos);
    // 逻辑操作(这里写你的逻辑判断)
    if ("zdw".equals(username) && "admin".equals(password))
    {
      // 响应数据
      dos.writeUTF("true");
    } else
    {
      // 响应数据
      dos.writeUTF("false");
    }
    //
    byte[] data = baos.toByteArray();
    // 设置服务器响应参数
    response.setStatus(HttpServletResponse.SC_OK);
    response.setContentLength(data.length);
    response.setContentType("application/octet-stream");
    OutputStream os = response.getOutputStream();
    os.write(data);
    os.close();
  }
}

(责任编辑:admin)

网学推荐

免费论文

原创论文

浏览:
设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号