zoukankan      html  css  js  c++  java
  • java 传入用户名和密码并自动提交表单实现登录到其他系统

    不用单点登录,模拟远程项目的登录页面表单,在访问这个页面的时候自动提交表单到此项目的登录action,就可以实现登录到其他系统。

    ssh框架项目

    1.以下是本地系统的action代码:

     1 import java.io.IOException;
     2 import java.util.List;
     3 import java.io.BufferedReader;
     4 import java.io.IOException;
     5 import java.io.InputStreamReader;
     6 import java.io.PrintWriter;
     7 import java.net.URL;
     8 import java.net.URLConnection;
     9 
    10 public class myLoginAction {
    11 
    12     /**
    13      * 查询是否用户已注册
    14      * @return
    15      * @throws Exception 
    16      */
    17     public void checkUser() throws Exception{
    18         Loginer loginer = (Loginer) request.getSession()
    19         .getAttribute("loginer");
    20         
    21         String url = "http://www.youtest.com/login.php"; //远程系统登录action地址
    22         String param = "username=Tom&password=123456"; //参数
    23         String temp = "alert('用户名或密码错误');";   //返回的信息,此处是错误信息,用于比较。   视情况而定
    24         boolean result =false ;
    25         //验证数据是否能登录
    26         result = sendPost(url, param, temp);
    27         if(result){
    28             return "login";
    29         }else{
    30             return "register";
    31         }
    32         }
    33 
    34     //访问远程登录action并获取返回的信息
    35     public static boolean sendPost(String url, String param, String temp) {
    36             PrintWriter out = null;
    37             BufferedReader in = null;
    38             boolean result = true;
    39             try {
    40                 URL realUrl = new URL(url);
    41                     // 打开和URL之间的连接
    42                    URLConnection conn = realUrl.openConnection();
    43                     // 设置通用的请求属性
    44                     conn.setRequestProperty("accept", "*/*");
    45                     conn.setRequestProperty("connection", "Keep-Alive");
    46                     conn.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
    47                     // 发送POST请求必须设置如下两行
    48                     conn.setDoOutput(true);
    49                     conn.setDoInput(true);
    50                     // 获取URLConnection对象对应的输出流
    51                     out = new PrintWriter(conn.getOutputStream());
    52                     // 发送请求参数
    53                     out.print(param);
    54                     // flush输出流的缓冲
    55                     out.flush();
    56                     // 定义BufferedReader输入流来读取URL的响应
    57                     in = new BufferedReader(new InputStreamReader(conn.getInputStream(),"UTF-8"));
    58                     String line;
    59                     while ((line = in.readLine()) != null) {
    60                         if(temp.equals((line.trim()))) {
    61                             System.out.println("错误的line:"+line);
    62                             result = false;
    63                         }
    64                     }
    65             } catch (Exception e) {
    66                 result = false;
    67                 logger.error("发送 POST 请求出现异常!"+e);
    68                     System.out.println("发送 POST 请求出现异常!"+e);
    69                     e.printStackTrace();
    70             }finally{
    71                     try{
    72                         if(out!=null){
    73                                 out.close();
    74                         }
    75                         if(in!=null){
    76                                 in.close();
    77                         }
    78                     }catch(IOException ex){
    79                         logger.error(ex);
    80                         ex.printStackTrace();
    81                     }
    82             }
    83             return result;
    84         } 
    85 }

    2.模拟的登录页面:

     1 <html>
     2 <head></head>
     3 <body>
     4        <script type="text/javascript">
     5          var iframe = document.createElement("iframe");
     6          iframe.src = "http://www.youtest.com/login.php?UNAME=<%=userName%>&UPWD=<%=pwd%>";
     7          iframe.style.display="none";
     8          
     9          var sta="false;"
    10          if (iframe.attachEvent){
    11              iframe.attachEvent("onload", function(){
    12                  window.location.href="http://www.youtest.com/index.html";
    13              });
    14          } else {
    15              iframe.onload = function(){
    16                  window.location.href="http://www.youtest.com/index.html";
    17              };
    18          }
    19          document.body.appendChild(iframe);
    20  </script>
    21    </body>
    22 </html>
  • 相关阅读:
    学习:ASP.NET中App_Code,App_Data等文件夹的作用(转)
    总结:CLR Via C#(第九章):属性与索引器
    总结:CLR Via C#(第八章):其他(方法传递、out、ref)
    Init Version
    Code 128 Barcode Font Advantage Package 的常见问题
    Skelta Workflow.NET 2004 R2
    GTP.NET 甘特图项目管理控件
    Code 128 Barcode Font Advantage Package 中如何手动加入起始符,结束符,校验符
    VectorDraw Professional v5.1.1.1043
    开篇
  • 原文地址:https://www.cnblogs.com/yeqrblog/p/4626667.html
Copyright © 2011-2022 走看看