JAVA写的窗口应用程序,按模块分类附上的WORD文档JAVA源代码和SQL SERVER的数据库建立方法,数据源的建立方法请自行上网搜索~
2019-12-21 18:44:25 549KB JAVA 数据库 源代码
1
微信小程序 移动端商城 完整源代码
2016-11-09 00:00:00 409KB 商城,小程序
1
RT-Thread 是一款主要由中国开源社区主导开发的开源实时操作系统。实时线程操作系统不仅仅是一个单一的实时操作系统内核,它也是一个完整的应用系统,包含了实时、嵌入式系统相关的各个组件:TCP/IP协议栈,文件系统,libc接口,图形用户界面等。性能优于一般的ucos-ii系统。
2015-03-02 00:00:00 459KB rt-thread 嵌入式
1
三菱PLC上位机编程软件VC6.0完整源代码及DEMO v1.0
2014-07-12 00:00:00 731KB PLC 上位机 VC 梯形图
1
TCPIP实用程序&温度数据采集系统程序(上位机程序)+MFC+ODBC数据库接口&虚拟串口的完整源代码
2013-01-10 00:00:00 2.8MB TCPIP 数采 虚拟串口
1
package cn.itcast.servlet; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import cn.itcast.utils.ConfigInfo; import cn.itcast.utils.PanymentUtil; /** * 发起支付请求 * @author 传智播客 * */ public class PaymentRequest 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 { request.setCharacterEncoding("GBK"); String orderid = request.getParameter("orderid");//订单号 String amount = request.getParameter("amount");//支付金额 String pd_FrpId = request.getParameter("pd_FrpId");//选择的支付银行 String p1_MerId = ConfigInfo.getValue("p1_MerId"); String keyValue = ConfigInfo.getValue("keyValue"); String merchantCallbackURL = ConfigInfo.getValue("merchantCallbackURL"); String messageType = "Buy"; // 请求命令,在线支付固定为Buy String currency = "CNY"; // 货币单位 String productDesc = ""; // 商品描述 String productCat = ""; // 商品种类 String productId = ""; // 商品ID String addressFlag = "0"; // 需要填写送货信息 0:不需要 1:需要 String sMctProperties = ""; // 商家扩展信息 String pr_NeedResponse = "0"; // 应答机制 String md5hmac = PanymentUtil.buildHmac(messageType, p1_MerId, orderid, amount, currency, productId, productCat, productDesc, merchantCallbackURL, addressFlag, sMctProperties, pd_FrpId, pr_NeedResponse, keyValue); request.setAttribute("messageType", messageType); request.setAttribute("merchantID", p1_MerId); request.setAttribute("orderId", orderid); request.setAttribute("amount", amount); request.setAttribute("currency", currency); request.setAttribute("productId", productId); request.setAttribute("productCat", productCat); request.setAttribute("productDesc", productDesc); reques
2012-06-14 00:00:00 374KB 网上支付完整源代码
1
超市进销存完整代码,仅供学习。超市进销存完整代码,仅供学习。超市进销存完整代码,仅供学习。超市进销存完整代码,仅供学习。超市进销存完整代码,仅供学习。超市进销存完整代码,仅供学习。超市进销存完整代码,仅供学习。超市进销存完整代码,仅供学习。超市进销存完整代码,仅供学习。
2011-06-21 00:00:00 9MB 进销存 源代码
1