网上支付心案例payment

    1.  案例的作用及用法参考该类的说明注释  
    2. 工具类分别有:  
    3. package cn.itcast.utils;  
    4.   
    5. import java.util.Properties;  
    6. /** 
    7.  * 读取配置文件 
    8.  * 
    9.  */  
    10. public class ConfigInfo {  
    11.     private static Properties cache = new Properties();  
    12.     static{  
    13.         try {  
    14.             cache.load(ConfigInfo.class.getClassLoader().getResourceAsStream("merchantInfo.properties"));  
    15.         } catch (Exception e) {  
    16.             e.printStackTrace();  
    17.         }  
    18.     }  
    19.     /** 
    20.      * 获取指定key的值 
    21.      * @param key 
    22.      * @return 
    23.      */  
    24.     public static String getValue(String key){  
    25.         return cache.getProperty(key);  
    26.     }  
    27. }  
    28.   
    29. package cn.itcast.utils;  
    30.   
    31. import java.io.UnsupportedEncodingException;  
    32. import java.security.MessageDigest;  
    33. import java.security.NoSuchAlgorithmException;  
    34. import java.util.Arrays;  
    35.   
    36.   
    37. /** 
    38.  * md5-hmac算法加密类 
    39.  */  
    40. public class DigestUtil {  
    41.   
    42.     private static String encodingCharset = "UTF-8";  
    43.   
    44.     public static String hmacSign(String aValue, String aKey) {  
    45.         byte k_ipad[] = new byte[64];  
    46.         byte k_opad[] = new byte[64];  
    47.         byte keyb[];  
    48.         byte value[];  
    49.         try {  
    50.             keyb = aKey.getBytes(encodingCharset);  
    51.             value = aValue.getBytes(encodingCharset);  
    52.         } catch (UnsupportedEncodingException e) {  
    53.             keyb = aKey.getBytes();  
    54.             value = aValue.getBytes();  
    55.         }  
    56.   
    57.         Arrays.fill(k_ipad, keyb.length, 64, (byte54);  
    58.         Arrays.fill(k_opad, keyb.length, 64, (byte92);  
    59.         for (int i = 0; i < keyb.length; i++) {  
    60.             k_ipad[i] = (byte) (keyb[i] ^ 0x36);  
    61.             k_opad[i] = (byte) (keyb[i] ^ 0x5c);  
    62.         }  
    63.   
    64.         MessageDigest md = null;  
    65.         try {  
    66.             md = MessageDigest.getInstance("MD5");  
    67.         } catch (NoSuchAlgorithmException e) {  
    68.   
    69.             return null;  
    70.         }  
    71.         md.update(k_ipad);  
    72.         md.update(value);  
    73.         byte dg[] = md.digest();  
    74.         md.reset();  
    75.         md.update(k_opad);  
    76.         md.update(dg, 016);  
    77.         dg = md.digest();  
    78.         return toHex(dg);  
    79.     }  
    80.   
    81.     public static String toHex(byte input[]) {  
    82.         if (input == null)  
    83.             return null;  
    84.         StringBuffer output = new StringBuffer(input.length * 2);  
    85.         for (int i = 0; i < input.length; i++) {  
    86.             int current = input[i] & 0xff;  
    87.             if (current < 16)  
    88.                 output.append("0");  
    89.             output.append(Integer.toString(current, 16));  
    90.         }  
    91.   
    92.         return output.toString();  
    93.     }  
    94.   
    95.     /** 
    96.      *  
    97.      * @param args 
    98.      * @param key 
    99.      * @return 
    100.      */  
    101.     public static String getHmac(String[] args, String key) {  
    102.         if (args == null || args.length == 0) {  
    103.             return (null);  
    104.         }  
    105.         StringBuffer str = new StringBuffer();  
    106.         for (int i = 0; i < args.length; i++) {  
    107.             str.append(args[i]);  
    108.         }  
    109.         return (hmacSign(str.toString(), key));  
    110.     }  
    111.   
    112.     /** 
    113.      * @param aValue 
    114.      * @return 
    115.      */  
    116.     public static String digest(String aValue) {  
    117.         aValue = aValue.trim();  
    118.         byte value[];  
    119.         try {  
    120.             value = aValue.getBytes(encodingCharset);  
    121.         } catch (UnsupportedEncodingException e) {  
    122.             value = aValue.getBytes();  
    123.         }  
    124.         MessageDigest md = null;  
    125.         try {  
    126.             md = MessageDigest.getInstance("SHA");  
    127.         } catch (NoSuchAlgorithmException e) {  
    128.             e.printStackTrace();  
    129.             return null;  
    130.         }  
    131.         return toHex(md.digest(value));  
    132.   
    133.     }  
    134.       
    135. }  
    136.   
    137.   
    138. package cn.itcast.utils;  
    139.   
    140. public class PanymentUtil {  
    141.     /** 
    142.      * 生成hmac方法 
    143.      *  
    144.      * @param p0_Cmd 业务类型 
    145.      * @param p1_MerId 商户编号 
    146.      * @param p2_Order 商户订单号 
    147.      * @param p3_Amt 支付金额 
    148.      * @param p4_Cur 交易币种 
    149.      * @param p5_Pid 商品名称 
    150.      * @param p6_Pcat 商品种类 
    151.      * @param p7_Pdesc 商品描述 
    152.      * @param p8_Url 商户接收支付成功数据的地址 
    153.      * @param p9_SAF 送货地址 
    154.      * @param pa_MP 商户扩展信息 
    155.      * @param pd_FrpId 银行编码 
    156.      * @param pr_NeedResponse 应答机制 
    157.      * @param keyValue 商户密钥 
    158.      * @return 
    159.      */  
    160.     public static String buildHmac(String p0_Cmd,String p1_MerId,  
    161.             String p2_Order, String p3_Amt, String p4_Cur,String p5_Pid, String p6_Pcat,  
    162.             String p7_Pdesc,String p8_Url, String p9_SAF,String pa_MP,String pd_FrpId,  
    163.             String pr_NeedResponse,String keyValue) {  
    164.         StringBuffer sValue = new StringBuffer();  
    165.         // 业务类型  
    166.         sValue.append(p0_Cmd);  
    167.         // 商户编号  
    168.         sValue.append(p1_MerId);  
    169.         // 商户订单号  
    170.         sValue.append(p2_Order);  
    171.         // 支付金额  
    172.         sValue.append(p3_Amt);  
    173.         // 交易币种  
    174.         sValue.append(p4_Cur);  
    175.         // 商品名称  
    176.         sValue.append(p5_Pid);  
    177.         // 商品种类  
    178.         sValue.append(p6_Pcat);  
    179.         // 商品描述  
    180.         sValue.append(p7_Pdesc);  
    181.         // 商户接收支付成功数据的地址  
    182.         sValue.append(p8_Url);  
    183.         // 送货地址  
    184.         sValue.append(p9_SAF);  
    185.         // 商户扩展信息  
    186.         sValue.append(pa_MP);  
    187.         // 银行编码  
    188.         sValue.append(pd_FrpId);  
    189.         // 应答机制  
    190.         sValue.append(pr_NeedResponse);  
    191.           
    192.         String sNewString = DigestUtil.hmacSign(sValue.toString(), keyValue);  
    193.         return sNewString;  
    194.     }  
    195.       
    196.     /** 
    197.      * 返回校验hmac方法 
    198.      *  
    199.      * @param hmac 支付网关发来的加密验证码 
    200.      * @param p1_MerId 商户编号 
    201.      * @param r0_Cmd 业务类型 
    202.      * @param r1_Code 支付结果 
    203.      * @param r2_TrxId 易宝支付交易流水号 
    204.      * @param r3_Amt 支付金额 
    205.      * @param r4_Cur 交易币种 
    206.      * @param r5_Pid 商品名称 
    207.      * @param r6_Order 商户订单号 
    208.      * @param r7_Uid 易宝支付会员ID 
    209.      * @param r8_MP 商户扩展信息 
    210.      * @param r9_BType 交易结果返回类型 
    211.      * @param keyValue 密钥 
    212.      * @return 
    213.      */  
    214.     public static boolean verifyCallback(String hmac, String p1_MerId,  
    215.             String r0_Cmd, String r1_Code, String r2_TrxId, String r3_Amt,  
    216.             String r4_Cur, String r5_Pid, String r6_Order, String r7_Uid,  
    217.             String r8_MP, String r9_BType, String keyValue) {  
    218.         StringBuffer sValue = new StringBuffer();  
    219.         // 商户编号  
    220.         sValue.append(p1_MerId);  
    221.         // 业务类型  
    222.         sValue.append(r0_Cmd);  
    223.         // 支付结果  
    224.         sValue.append(r1_Code);  
    225.         // 易宝支付交易流水号  
    226.         sValue.append(r2_TrxId);  
    227.         // 支付金额  
    228.         sValue.append(r3_Amt);  
    229.         // 交易币种  
    230.         sValue.append(r4_Cur);  
    231.         // 商品名称  
    232.         sValue.append(r5_Pid);  
    233.         // 商户订单号  
    234.         sValue.append(r6_Order);  
    235.         // 易宝支付会员ID  
    236.         sValue.append(r7_Uid);  
    237.         // 商户扩展信息  
    238.         sValue.append(r8_MP);  
    239.         // 交易结果返回类型  
    240.         sValue.append(r9_BType);  
    241.         String sNewString = DigestUtil.hmacSign(sValue.toString(), keyValue);  
    242.   
    243.         if (hmac.equals(sNewString)) {  
    244.             return true;  
    245.         }  
    246.         return false;  
    247.     }  
    248. }  
    249.   
    250.   
    251. Servlet相关的类  
    252. package cn.itcast.servlet;  
    253.   
    254. import java.io.IOException;  
    255. import javax.servlet.ServletException;  
    256. import javax.servlet.http.HttpServlet;  
    257. import javax.servlet.http.HttpServletRequest;  
    258. import javax.servlet.http.HttpServletResponse;  
    259.   
    260. import cn.itcast.utils.ConfigInfo;  
    261. import cn.itcast.utils.PanymentUtil;  
    262. /** 
    263.  * 发起支付请求 
    264.  * @author 传智播客 
    265.  * 
    266.  */  
    267. public class PaymentRequest extends HttpServlet {  
    268.   
    269.     public void doGet(HttpServletRequest request, HttpServletResponse response)  
    270.             throws ServletException, IOException {  
    271.         this.doPost(request, response);  
    272.     }  
    273.   
    274.     public void doPost(HttpServletRequest request, HttpServletResponse response)  
    275.             throws ServletException, IOException {  
    276.         request.setCharacterEncoding("GBK");  
    277.         String orderid = request.getParameter("orderid");//订单号  
    278.         String amount = request.getParameter("amount");//支付金额  
    279.         String pd_FrpId = request.getParameter("pd_FrpId");//选择的支付银行  
    280.         String p1_MerId = ConfigInfo.getValue("p1_MerId");  
    281.         String keyValue = ConfigInfo.getValue("keyValue");  
    282.         String merchantCallbackURL = ConfigInfo.getValue("merchantCallbackURL");          
    283.         String messageType = "Buy"// 请求命令,在线支付固定为Buy  
    284.         String currency = "CNY"// 货币单位  
    285.         String productDesc = ""// 商品描述  
    286.         String productCat = ""// 商品种类  
    287.         String productId = ""// 商品ID  
    288.         String addressFlag = "0"// 需要填写送货信息 0:不需要 1:需要          
    289.         String sMctProperties = ""// 商家扩展信息  
    290.         String pr_NeedResponse = "0"// 应答机制  
    291.         String md5hmac = PanymentUtil.buildHmac(messageType, p1_MerId, orderid, amount, currency,  
    292.                 productId, productCat, productDesc, merchantCallbackURL, addressFlag, sMctProperties,   
    293.                 pd_FrpId, pr_NeedResponse, keyValue);  
    294.           
    295.         request.setAttribute("messageType", messageType);  
    296.         request.setAttribute("merchantID", p1_MerId);  
    297.         request.setAttribute("orderId", orderid);  
    298.         request.setAttribute("amount", amount);  
    299.         request.setAttribute("currency", currency);  
    300.         request.setAttribute("productId", productId);  
    301.         request.setAttribute("productCat", productCat);  
    302.         request.setAttribute("productDesc", productDesc);  
    303.         request.setAttribute("merchantCallbackURL", merchantCallbackURL);  
    304.         request.setAttribute("addressFlag", addressFlag);  
    305.         request.setAttribute("sMctProperties", sMctProperties);  
    306.         request.setAttribute("frpId", pd_FrpId);  
    307.         request.setAttribute("pr_NeedResponse", pr_NeedResponse);  
    308.         request.setAttribute("hmac", md5hmac);  
    309.           
    310.         request.getRequestDispatcher("/WEB-INF/page/connection.jsp").forward(request, response);  
    311.     }  
    312.   
    313. }  
    314.   
    315.   
    316. package cn.itcast.servlet;  
    317.   
    318. import java.io.IOException;  
    319.   
    320. import javax.servlet.ServletException;  
    321. import javax.servlet.http.HttpServlet;  
    322. import javax.servlet.http.HttpServletRequest;  
    323. import javax.servlet.http.HttpServletResponse;  
    324.   
    325. import cn.itcast.utils.ConfigInfo;  
    326. import cn.itcast.utils.PanymentUtil;  
    327. /** 
    328.  * 响应银行支付结果请求 
    329.  * @author 传智播客 
    330.  * 
    331.  */  
    332. public class PaymentResutlResponse extends HttpServlet {  
    333.   
    334.     public void doGet(HttpServletRequest request, HttpServletResponse response)  
    335.             throws ServletException, IOException {  
    336.         this.doPost(request, response);  
    337.     }  
    338.   
    339.     public void doPost(HttpServletRequest request, HttpServletResponse response)  
    340.             throws ServletException, IOException {  
    341.         request.setCharacterEncoding("GBK");  
    342.         String merchantID = ConfigInfo.getValue("p1_MerId"); // 商家ID  
    343.         String keyValue = ConfigInfo.getValue("keyValue"); // 商家密钥  
    344.           
    345.         String sCmd = request.getParameter("r0_Cmd"); //业务类型  
    346.         String sResultCode = request.getParameter("r1_Code"); //扣款结果,该字段值为1时表示扣款成功.  
    347.         String sTrxId = request.getParameter("r2_TrxId"); //YeePay易宝交易订单号  
    348.         String amount = request.getParameter("r3_Amt");//扣款金额,交易结束后,YeePay易宝交易系统将实际扣款金额返回给商户  
    349.         String currency = request.getParameter("r4_Cur");//交易币种,人民币为CNY  
    350.         String productId = request.getParameter("r5_Pid");//商品ID  
    351.         String orderId = request.getParameter("r6_Order");//商户订单号  
    352.         String userId = request.getParameter("r7_Uid");//YeePay易宝会员ID  
    353.         String mp  = request.getParameter("r8_MP");//商户扩展信息,可以任意填写1K 的字符串,交易返回时将原样返回  
    354.         String bType = request.getParameter("r9_BType");//交易结果通知类型,1: 交易成功回调(浏览器重定向)2: 交易成功主动通知(服务器点对点通讯)  
    355.         String rb_BankId  = request.getParameter("rb_BankId");//支付银行  
    356.         String rp_PayDate = request.getParameter("rp_PayDate");//在银行支付时的时间  
    357.         String hmac = request.getParameter("hmac");//MD5交易签名  
    358.           
    359.         boolean result = PanymentUtil.verifyCallback(hmac, merchantID, sCmd, sResultCode, sTrxId, amount,  
    360.                 currency, productId, orderId, userId, mp, bType, keyValue);  
    361.         if(result){  
    362.             if("1".equals(sResultCode)){  
    363.                 //你们这个地方应该把数据库中订单的支付状态设置成已经支付.  
    364.                 String message = "订单号为:"+ orderId+ "的订单支付成功了";  
    365.                 message += ",用户支付了"+ amount +"元";  
    366.                 message +=",交易结果通知类型:";  
    367.                 if("1".equals(bType)){  
    368.                      message += "浏览器重定向";  
    369.                 }else if("2".equals(bType)){  
    370.                      message += "易宝支付网关后台程序通知";  
    371.                 }  
    372.                 message += ",易宝订单系统中的订单号为:"+ sTrxId;  
    373.                 request.setAttribute("message", message);  
    374.             }else{  
    375.                 request.setAttribute("message""用户支付失败");  
    376.             }  
    377.         }else{  
    378.             request.setAttribute("message""数据来源不合法");  
    379.         }  
    380.         request.getRequestDispatcher("/WEB-INF/page/paymentResult.jsp").forward(request, response);  
    381.     }  
    382.   
    383. }  
    384.   
    385. 显示界面jsp  
    386. <%@ page language="java" import="java.util.*" pageEncoding="GBK"%>  
    387. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">  
    388. <html>  
    389.   <head>  
    390.     
    391.     <title>巴巴运动网_支付第一步,选择支付银行</title>  
    392.     <meta http-equiv="pragma" content="no-cache">  
    393.     <meta http-equiv="cache-control" content="no-cache">  
    394.     <meta http-equiv="expires" content="0">      
    395.   
    396.   </head>  
    397.     
    398.   <body>  
    399. <table width="960" border="0" align="center">  
    400.   <tr>  
    401.     <td width="536" valign="top">  
    402.     <form action="${pageContext.request.contextPath}/servlet/yeepay/paymentRequest" method="post" name="paymentform">  
    403.       
    404.     <table width="100%" border="0">  
    405.       <tr>  
    406.         <td height="30" colspan="4"><table width="100%" height="50" border="0" cellpadding="0" cellspacing="1" bgcolor="#A2E0FF">  
    407.           <tr>  
    408.             <td align="center" bgcolor="#F7FEFF"><h3>订单号:<INPUT TYPE="text" NAME="orderid"> 应付金额:¥<INPUT TYPE="text" NAME="amount" size="6">元</h3></td>  
    409.           </tr>  
    410.         </table></td>  
    411.         </tr>  
    412.       <tr>  
    413.         <td colspan="4"> </td>  
    414.         </tr>  
    415.       <tr>  
    416.         <td height="30" colspan="4" bgcolor="#F4F8FF"><span class="STYLE3">请您选择在线支付银行</span> </td>  
    417.         </tr>  
    418.       <tr>  
    419.         <td width="26%" height="25"><INPUT TYPE="radio" NAME="pd_FrpId" value="CMBCHINA-NET">招商银行 </td>  
    420.         <td width="25%" height="25"><INPUT TYPE="radio" NAME="pd_FrpId" value="ICBC-NET">工商银行</td>  
    421.         <td width="25%" height="25"><INPUT TYPE="radio" NAME="pd_FrpId" value="ABC-NET">农业银行</td>  
    422.         <td width="24%" height="25"><INPUT TYPE="radio" NAME="pd_FrpId" value="CCB-NET">建设银行 </td>  
    423.       </tr>  
    424.       <tr>  
    425.         <td height="25"><INPUT TYPE="radio" NAME="pd_FrpId" value="CMBC-NET">中国民生银行总行</td>  
    426.         <td height="25"><INPUT TYPE="radio" NAME="pd_FrpId" value="CEB-NET" >光大银行 </td>  
    427.         <td height="25"><INPUT TYPE="radio" NAME="pd_FrpId" value="BOCO-NET">交通银行</td>  
    428.         <td height="25"><INPUT TYPE="radio" NAME="pd_FrpId" value="SDB-NET">深圳发展银行</td>  
    429.       </tr>  
    430.       <tr>  
    431.         <td height="25"><INPUT TYPE="radio" NAME="pd_FrpId" value="BCCB-NET">北京银行</td>  
    432.         <td height="25"><INPUT TYPE="radio" NAME="pd_FrpId" value="CIB-NET">兴业银行 </td>  
    433.         <td height="25"><INPUT TYPE="radio" NAME="pd_FrpId" value="SPDB-NET">上海浦东发展银行 </td>  
    434.         <td ><INPUT TYPE="radio" NAME="pd_FrpId" value="ECITIC-NET">中信银行</td>  
    435.       </tr>  
    436.       <tr>  
    437.         <td colspan="4"> </td>  
    438.         </tr>  
    439.       <tr>  
    440.         <td colspan="4" align="center"><input type="submit" value=" 确认支付 " /></td>  
    441.         </tr>  
    442.     </table>  
    443.     </form>   </td>  
    444.     <td colspan="2" valign="top"><div class="divts"><table width="400" border="0" align="center" cellpadding="5" cellspacing="0">  
    445.       <tr>  
    446.         <td bgcolor="#F4F8FF"><span class="STYLE5"> 温馨提示</span></td>  
    447.       </tr>  
    448.       <tr>  
    449.         <td><ul><li> 建行客户需到柜面签约网上银行才能支付</li>  
    450.         <li>请关闭弹出窗口拦截功能</li>  
    451.         <li>务必使用IE5.0以上浏览器</li>  
    452.         <li>支付出错时勿按IE“后退”键</li>  
    453.         </ul></td>  
    454.       </tr>  
    455.     </table>  
    456.     </div>  
    457.       
    458.     <div id="blankmessage"></div>   </td>  
    459.   </tr>  
    460.   <tr>  
    461.     <td> </td>  
    462.     <td width="290"> </td>  
    463.     <td width="120"> </td>  
    464.   </tr>  
    465. </table>  
    466.   </body>  
    467. </html>  
    468.   
    469. 发起支付请求  
    470. <%@ page language="java" pageEncoding="GBK"%>  
    471. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">  
    472. <html>  
    473.   <head>  
    474.     <title>发起支付请求</title>  
    475.       
    476.     <meta http-equiv="pragma" content="no-cache">  
    477.     <meta http-equiv="cache-control" content="no-cache">  
    478.     <meta http-equiv="expires" content="0">      
    479.   </head>  
    480.     
    481.   <body οnlοad="javascript:document.forms[0].submit()">  
    482.     <!-- http://tech.yeepay.com:8080/robot/debug.action -->  
    483.     <form name="yeepay" action="https://www.yeepay.com/app-merchant-proxy/node" method='post'>      
    484.         <input type='hidden' name='p0_Cmd'   value="${messageType}"> <!-- 请求命令,在线支付固定为Buy -->  
    485.         <input type='hidden' name='p1_MerId' value="${merchantID}"> <!-- 商家ID -->  
    486.         <input type="hidden" name="p2_Order" value="${orderId}"> <!-- 商家的交易定单号 -->  
    487.         <input type='hidden' name='p3_Amt'   value="${amount}"> <!-- 订单金额 -->  
    488.         <input type='hidden' name='p4_Cur'   value="${currency}"> <!-- 货币单位 -->  
    489.         <input type='hidden' name='p5_Pid'   value="${productId}"> <!-- 商品ID -->  
    490.         <input type='hidden' name='p6_Pcat'  value="${productCat}"> <!-- 商品种类 -->  
    491.         <input type='hidden' name='p7_Pdesc' value="${productDesc}"> <!-- 商品描述 -->  
    492.         <input type='hidden' name='p8_Url'   value="${merchantCallbackURL}"> <!-- 交易结果通知地址 -->  
    493.         <input type='hidden' name='p9_SAF'   value="${addressFlag}"> <!-- 需要填写送货信息 0:不需要 1:需要 -->  
    494.         <input type='hidden' name='pa_MP'    value="${sMctProperties}"> <!-- 商家扩展信息 -->  
    495.         <input type='hidden' name='pd_FrpId' value="${frpId}"> <!-- 银行ID -->  
    496.         <!-- 应答机制 为“1”: 需要应答机制;为“0”: 不需要应答机制 -->  
    497.         <input type="hidden" name="pr_NeedResponse"  value="0">  
    498.         <input type='hidden' name='hmac' value="${hmac}"><!-- MD5-hmac验证码 -->  
    499.     </form>  
    500.   </body>  
    501. </html>  
    502.   
    503. 支付结果  
    504. <%@ page language="java" pageEncoding="GBK"%>  
    505. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">  
    506. <html>  
    507.   <head>  
    508.     <title>支付结果</title>  
    509.       
    510.     <meta http-equiv="pragma" content="no-cache">  
    511.     <meta http-equiv="cache-control" content="no-cache">  
    512.     <meta http-equiv="expires" content="0">      
    513.   </head>  
    514.     
    515.   <body >  
    516.     <center><h3><font color="red">  
    517.     ${message }  
    518.     </font></h3></center>  
    519.   </body>  
    520. </html> 

转载于:https://www.cnblogs.com/chenchangyan/p/3539667.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/473629.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

LeetCode 1637. 两点之间不包含任何点的最宽垂直面积

文章目录1. 题目2. 解题1. 题目 给你 n 个二维平面上的点 points &#xff0c;其中 points[i] [xi, yi] &#xff0c;请你返回两点之间内部不包含任何点的 最宽垂直面积 的宽度。 垂直面积 的定义是固定宽度&#xff0c;而 y 轴上无限延伸的一块区域&#xff08;也就是高度为…

有两个序列a,b,大小都为n,序列元素的值任意整数,无序;要求:通过交换a,b中的元素,使[序列a元素的和

原题:有一序列a&#xff0c;大小为n&#xff0c;分为2部分,序列元素的值任意整形数&#xff0c;无序&#xff1b; 要求&#xff1a;通过交换a,b中的元素&#xff0c;使[序列a元素的和]与[序列b元素的和]之间的差最小&#xff0c;用python写。 #codingutf-8 # 1.将两序列合并为一…

Task执行流程

1、源码走读 &#xff08;1&#xff09;当Driver中的SchedulerBackend&#xff08;Standalone模式为CoarseGrainedSchedulerBackend&#xff09;给ExecutorBackend&#xff08;Standalone模式为CoarseGrainedExecutorBackend&#xff09;发送LaunchTask之后&#xff0c;Coarse…

一段挂起进程中所有线程的代码

今天看书核心编程看到第7章&#xff0c;中的一段代码很有意思&#xff0c;win7下对记事本进程进行测试&#xff0c;可以挂起&#xff0c;挺有意思的 //windows核心编程 第5版中的一段代码 /* 函数功能:挂起进程中的所有线程 参数1:进程ID 参数2:若为TRUE时对进程中的所有线程调…

LeetCode 1638. 统计只差一个字符的子串数目(DP)

文章目录1. 题目2. 解题2.1 暴力枚举2.2 DP1. 题目 给你两个字符串 s 和 t &#xff0c;请你找出 s 中的非空子串的数目&#xff0c;这些子串满足替换 一个不同字符 以后&#xff0c;是 t 串的子串。 换言之&#xff0c;请你找到 s 和 t 串中 恰好 只有一个字符不同的子字符串…

Airflow简介

1、什么是Airflow Airflow 是一个 Airbnb 的 Workflow 开源项目&#xff0c;使用Python编写实现的任务管理、调度、监控工作流平台。Airflow 是基于DAG(有向无环图)的任务管理系统&#xff0c;可以简单理解为是高级版的crontab&#xff0c;但是它解决了crontab无法解决的任务…

Flask简介与简单项目操作流程

Flask框架简介Flask诞生于2010年&#xff0c;是Armin ronacher&#xff08;人名&#xff09;用Python语言基于Werkzeug工具箱编写的轻量级Web开发框架。它主要面向需求简单的小应用。Flask本身相当于一个内核&#xff0c;其他几乎所有的功能都要用到扩展&#xff08;邮件扩展Fl…

LeetCode 1640. 能否连接形成数组(哈希)

文章目录1. 题目2. 解题1. 题目 给你一个整数数组 arr &#xff0c;数组中的每个整数 互不相同 。 另有一个由整数数组构成的数组 pieces&#xff0c;其中的整数也 互不相同 。请你以 任意顺序 连接 pieces 中的数组以形成 arr 。但是&#xff0c;不允许 对每个数组 pieces[i]…

python基本知识、数据库、网络、编程等总结

Python语言特性 1 Python的函数参数传递 看两个例子: a 1 def fun(a):a 2 fun(a) print a # 1 a [] def fun(a):a.append(1) fun(a) print a # [1] 所有的变量都可以理解是内存中一个对象的“引用”&#xff0c;或者&#xff0c;也可以看似c中void*的感觉。 通过id来看引…

Android中的Handler的具体用法

Android UI操作并不是线程安全的并且这些操作必须在UI线程中执行。Android利用Handler来实现UI线程的更新的。 Handler是Android中的消息发送器&#xff0c;其在哪个Activity中创建就属于且紧紧属于该Activity。还可以说其在哪个线程中new的&#xff0c;就是那个线程的Handler。…

LeetCode 1641. 统计字典序元音字符串的数目(DP)

文章目录1. 题目2. 解题1. 题目 给你一个整数 n&#xff0c;请返回长度为 n 、仅由元音 (a, e, i, o, u) 组成且按 字典序排列 的字符串数量。 字符串 s 按 字典序排列 需要满足&#xff1a;对于所有有效的 i&#xff0c;s[i] 在字母表中的位置总是与 s[i1] 相同或在 s[i1] 之…

mysql5.5中的MaxValue关键字

MaxValue是MySQL5.5中的关键字转载于:https://www.cnblogs.com/Neil223/p/3544271.html

python面试总结(二)列表去重与单例

1.Python里面如何实现tuple和list的转换python中&#xff0c;tuple和list均为内置类型&#xff0c; 以list作为参数将tuple类初始化&#xff0c;将返回tuple类型 tuple([1,2,3]) #list转换为tuple 以tuple作为参数将list类初始化&#xff0c;将返回list类型 …

LeetCode 1642. 可以到达的最远建筑(二分查找 / 优先队列贪心)

文章目录1. 题目2. 解题2.1 二分查找2.2 优先队列贪心1. 题目 给你一个整数数组 heights &#xff0c;表示建筑物的高度。另有一些砖块 bricks 和梯子 ladders 。 你从建筑物 0 开始旅程&#xff0c;不断向后面的建筑物移动&#xff0c;期间可能会用到砖块或梯子。 当从建筑…

ClickHouse高可用及副本测试

1 概述 ​ 对于默认的分布式表的配置&#xff0c;每个分片只有一份&#xff0c;这种多分片单副本集群&#xff0c;挂掉一个节点的话查询分布式表会报错。为了解决这个问题的话可以使用ClickHouse高可用集群&#xff0c;对于每个分片具有2个或2个以上的副本&#xff0c;当某个节…

阿里云Redis读写分离典型场景:如何轻松搭建电商秒杀系统

秒杀活动是绝大部分电商选择的低价促销&#xff0c;推广品牌的方式。不仅可以给平台带来用户量&#xff0c;还可以提高平台知名度。一个好的秒杀系统&#xff0c;可以提高平台系统的稳定性和公平性&#xff0c;获得更好的用户体验&#xff0c;提升平台的口碑&#xff0c;从而提…

使用for语句打印图形

public class Print { public static void main(String[] args) { int num11; //打印上半部分 for(int i0;i { for(int jnum;j>i1;j--) { System.out.print(" "); //打印空格 } for(int j0;j<i;j) { System.out.print("* "); } System.out.println()…

ClickHouse表引擎之Integration系列

​ Integration系统表引擎主要用于将外部数据导入到ClickHouse中&#xff0c;或者在ClickHouse中直接操作外部数据源。 1 Kafka 1.1 Kafka引擎 ​ 将Kafka Topic中的数据直接导入到ClickHouse。 ​ 语法如下&#xff1a; CREATE TABLE [IF NOT EXISTS] [db.]table_name [O…

LeetCode 756. 金字塔转换矩阵(回溯)

文章目录1. 题目2. 解题1. 题目 现在&#xff0c;我们用一些方块来堆砌一个金字塔。 每个方块用仅包含一个字母的字符串表示。 使用三元组表示金字塔的堆砌规则如下&#xff1a; 对于三元组(A, B, C) &#xff0c;“C”为顶层方块&#xff0c;方块“A”、“B”分别作为方块“…

Flask框架项目实例:**租房网站(一)

Flask是一款MVC框架&#xff0c;主要是从模型、视图、模板三个方面对Flask框架有一个全面的认识&#xff0c;通过完成作者-读书功能&#xff0c;先来熟悉Flask框架的完整使用步骤。 操作步骤为&#xff1a; 1.创建项目2.配置数据库3.定义模型类4.定义视图并配置URL 5.定义模板…