資源簡介
Android畢設,網上購物源碼,可以實現網上購物的技術,使用Android進行開發
代碼片段和文件信息
package?com.yyx.android;
import?java.io.IOException;
import?java.io.PrintWriter;
import?java.sql.ResultSet;
import?java.sql.SQLException;
import?javax.servlet.ServletException;
import?javax.servlet.http.HttpServlet;
import?javax.servlet.http.HttpServletRequest;
import?javax.servlet.http.HttpServletResponse;
public?class?Address?extends?HttpServlet?{
public?void?doGet(HttpServletRequest?request?HttpServletResponse?response)
????????????throws?ServletException?IOException?{
???doPost(request?response);
}
public?void?doPost(HttpServletRequest?request?HttpServletResponse?response)
????????throws?ServletException?IOException?{
?
String?json?=?null;?
//request.setCharacterEncoding(“UTF-8“);??
response.setContentType(“text/json;charset=UTF-8“);??
String?userName?=?request.getParameter(“username“);
String?sql?=?“SELECT?idusernamephoneaddr?FROM?members?WHERE?username?=??“;
String[]?parameters?=?{userName};
try?{
ResultSet?rs?=?MysqlHelper.executeQuery(sql?parameters);
json?=?StringHelper.ResultSetToString(rs);
System.out.println(“result?---->?“?+?json);
}?catch?(SQLException?e)?{
//?TODO?Auto-generated?catch?block
e.printStackTrace();
}finally?{
??? ? MysqlHelper.close(MysqlHelper.getRs()?MysqlHelper.getPs()?MysqlHelper.getConn());
????}
????
????try?{
PrintWriter?out?=?response.getWriter();
out.println(json);//?向客戶端輸出JSONobject字符串
????????out.flush();
????????out.close();
}?catch?(IOException?e)?{
//?TODO?Auto-generated?catch?block
e.printStackTrace();
}
}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2016-05-14?12:59??弋亞雄\
?????目錄???????????0??2016-05-11?14:28??弋亞雄\ComputerShop\
?????文件?????????728??2016-05-06?10:55??弋亞雄\ComputerShop\.classpath
?????文件????????1261??2016-05-02?01:08??弋亞雄\ComputerShop\.project
?????目錄???????????0??2016-05-11?14:28??弋亞雄\ComputerShop\.settings\
?????文件?????????567??2016-04-27?16:37??弋亞雄\ComputerShop\.settings\.jsdtscope
?????文件?????????347??2016-05-10?09:26??弋亞雄\ComputerShop\.settings\org.eclipse.core.resources.prefs
?????文件?????????629??2016-05-02?11:36??弋亞雄\ComputerShop\.settings\org.eclipse.jdt.core.prefs
?????文件?????????488??2016-04-27?16:37??弋亞雄\ComputerShop\.settings\org.eclipse.wst.common.component
?????文件?????????305??2016-05-02?01:13??弋亞雄\ComputerShop\.settings\org.eclipse.wst.common.project.facet.core.xm
?????文件??????????49??2016-04-27?16:37??弋亞雄\ComputerShop\.settings\org.eclipse.wst.jsdt.ui.superType.container
?????文件???????????6??2016-04-27?16:37??弋亞雄\ComputerShop\.settings\org.eclipse.wst.jsdt.ui.superType.name
?????目錄???????????0??2016-05-11?14:28??弋亞雄\ComputerShop\build\
?????目錄???????????0??2016-05-11?14:28??弋亞雄\ComputerShop\build\classes\
?????文件????????5412??2016-05-02?01:20??弋亞雄\ComputerShop\build\classes\applicationContext.xm
?????目錄???????????0??2016-05-11?14:28??弋亞雄\ComputerShop\build\classes\com\
?????目錄???????????0??2016-05-11?14:28??弋亞雄\ComputerShop\build\classes\com\yyx\
?????目錄???????????0??2016-05-11?14:28??弋亞雄\ComputerShop\build\classes\com\yyx\android\
?????文件????????2630??2016-05-08?15:43??弋亞雄\ComputerShop\build\classes\com\yyx\android\Address.class
?????文件????????2972??2016-05-08?15:43??弋亞雄\ComputerShop\build\classes\com\yyx\android\Goods.class
?????文件????????3327??2016-05-08?15:43??弋亞雄\ComputerShop\build\classes\com\yyx\android\LiuYan.class
?????文件????????2804??2016-05-08?15:43??弋亞雄\ComputerShop\build\classes\com\yyx\android\Login.class
?????文件????????5690??2016-05-08?15:43??弋亞雄\ComputerShop\build\classes\com\yyx\android\MysqlHelper.class
?????文件????????1756??2016-05-08?15:43??弋亞雄\ComputerShop\build\classes\com\yyx\android\Payed.class
?????文件????????3729??2016-05-08?15:43??弋亞雄\ComputerShop\build\classes\com\yyx\android\Pinglun.class
?????文件????????1792??2016-05-08?15:43??弋亞雄\ComputerShop\build\classes\com\yyx\android\Register.class
?????文件????????3912??2016-05-08?15:43??弋亞雄\ComputerShop\build\classes\com\yyx\android\StringHelper.class
?????目錄???????????0??2016-05-11?14:28??弋亞雄\ComputerShop\build\classes\com\yyx\dao\
?????文件?????????500??2016-05-08?15:43??弋亞雄\ComputerShop\build\classes\com\yyx\dao\IAboutDao.class
?????文件?????????583??2016-05-08?15:43??弋亞雄\ComputerShop\build\classes\com\yyx\dao\IAdminDao.class
?????文件?????????534??2016-05-08?15:43??弋亞雄\ComputerShop\build\classes\com\yyx\dao\ICartDao.class
............此處省略2881個文件信息
評論
共有 條評論