• 大小: 12.87MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-07-21
  • 语言: Java
  • 标签: 仿苏宁  

资源简介

仿苏宁易购官网 带有数据库+Java源码+部分图片+JAR包 下载即可使用

资源截图

代码片段和文件信息

package chl.code;
import java.io.IOException;

import javax.servlet.http.HttpServletRequest;

import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.HttpException;
import org.apache.commons.httpclient.NameValuePair;
import org.apache.commons.httpclient.methods.PostMethod;

import org.dom4j.Document;   
import org.dom4j.DocumentException;
import org.dom4j.DocumentHelper;   
import org.dom4j.Element;   


public class sendsms {

private static String Url = “http://106.ihuyi.com/webservice/sms.php?method=Submit“;


public void getCode(HttpServletRequest request String phone) {
HttpClient client = new HttpClient(); 
PostMethod method = new PostMethod(Url);

client.getParams().setContentCharset(“GBK“);
method.setRequestHeader(“ContentType““application/x-www-form-urlencoded;charset=GBK“);

int mobile_code = (int)((Math.random()*9+1)*100000);

System.out.println(“要发送的验证码“+mobile_code);

request.getSession().setAttribute(“mobile_code“ mobile_code);

    String content = new String(“您的验证码是:“ + mobile_code + “。请不要把验证码泄露给其他人。“);

NameValuePair[] data = {//提交短信
    new NameValuePair(“account“ “C79719789“) //查看用户名 登录用户中心->验证码通知短信>产品总览->API接口信息->APIID
    new NameValuePair(“password“ “9cc5021c998750041079879bd0778221“) //查看密码 登录用户中心->验证码通知短信>产品总览->API接口信息->APIKEY
    //new NameValuePair(“password“ util.StringUtil.MD5Encode(“密码“))
    new NameValuePair(“mobile“ phone) 
    new NameValuePair(“content“ content)
};
method.setRequestBody(data);

try {
client.executeMethod(method);

String SubmitResult =method.getResponseBodyAsString();

//System.out.println(SubmitResult);

Document doc = DocumentHelper.parseText(SubmitResult);
Element root = doc.getRootElement();

String code = root.elementText(“code“);
String msg = root.elementText(“msg“);
String smsid = root.elementText(“smsid“);

System.out.println(code);
System.out.println(msg);
System.out.println(smsid);

 if(“2“.equals(code)){
System.out.println(“短信提交成功“);
}

} catch (HttpException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (DocumentException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}

}

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2019-03-26 14:34  WebSNYG\
     文件         922  2019-02-26 10:29  WebSNYG\.classpath
     目录           0  2019-03-27 18:21  WebSNYG\.myeclipse\
     文件         297  2019-03-26 14:37  WebSNYG\.mymetadata
     文件        1751  2019-02-22 21:20  WebSNYG\.project
     目录           0  2019-03-26 14:34  WebSNYG\.settings\
     文件         500  2019-02-21 15:58  WebSNYG\.settings\.jsdtscope
     文件         733  2019-03-25 17:09  WebSNYG\.settings\org.eclipse.core.resources.prefs
     文件         364  2019-02-21 15:58  WebSNYG\.settings\org.eclipse.jdt.core.prefs
     文件         462  2019-02-21 15:58  WebSNYG\.settings\org.eclipse.wst.common.component
     文件         252  2019-02-21 15:58  WebSNYG\.settings\org.eclipse.wst.common.project.facet.core.xml
     文件          49  2019-02-21 15:58  WebSNYG\.settings\org.eclipse.wst.jsdt.ui.superType.container
     文件           6  2019-02-21 15:58  WebSNYG\.settings\org.eclipse.wst.jsdt.ui.superType.name
     目录           0  2019-03-26 14:34  WebSNYG\WebRoot\
     目录           0  2019-03-26 14:34  WebSNYG\WebRoot\meta-INF\
     文件          36  2019-02-21 15:58  WebSNYG\WebRoot\meta-INF\MANIFEST.MF
     目录           0  2019-03-26 14:34  WebSNYG\WebRoot\Page\
     文件       36942  2019-03-14 22:23  WebSNYG\WebRoot\Page\Commodity.jsp
     文件       36953  2019-03-26 10:56  WebSNYG\WebRoot\Page\Commodity2.jsp
     文件        3142  2019-03-16 01:07  WebSNYG\WebRoot\Page\Customer_Addr.jsp
     文件        2216  2019-03-17 21:16  WebSNYG\WebRoot\Page\GoodsOfList.jsp
     文件        1449  2019-03-04 10:25  WebSNYG\WebRoot\Page\MyJsp.jsp
     文件       16832  2019-03-26 10:38  WebSNYG\WebRoot\Page\Orderdetail.jsp
     文件       14777  2019-03-26 09:46  WebSNYG\WebRoot\Page\ShopPing.jsp
     文件        6206  2019-03-26 10:03  WebSNYG\WebRoot\Page\ShoppingCart.jsp
     文件       32636  2019-03-25 11:01  WebSNYG\WebRoot\Page\SubmitOrder.jsp
     文件       20558  2019-03-16 00:53  WebSNYG\WebRoot\Page\SubmitOrder2.jsp
     文件        3129  2019-03-25 17:50  WebSNYG\WebRoot\Page\category.jsp
     文件        3329  2019-03-27 09:16  WebSNYG\WebRoot\Page\comment.jsp
     文件        9431  2019-03-26 19:57  WebSNYG\WebRoot\Page\head.jsp
     文件       21163  2019-03-14 09:13  WebSNYG\WebRoot\Page\login.jsp
............此处省略778个文件信息

评论

共有 条评论

相关资源