您好,登錄后才能下訂單哦!
WAP網站開發和WWW網站開發大同小異,今天摸索了一天終于寫出了第一個wap頁面。
WAP網站開發和J2EE網站開發的環境基本一模一樣,wml語句嵌入JSP頁面即可,服務器采用Tomcat。
index.jsp
<?xmlversion="1.0"encoding="utf-8"?>
<%@ page contentType="text/vnd.wap.wml; charset=utf-8"%>
<!DOCTYPE wml PUBLIC "-//WAPFORUM//DTD WML 1.1//EN" "http://www.wapforum.org/DTD/wml_1.1.xml">
<wml>
<head>
<metahttp-equiv="Cache-Control"content="max-age=0"forua="true"/>
<metahttp-equiv="Cache-Control"content="no-cache"/>
</head>
<cardid="Home"title="測試">
<palign="center">
wml2.jsp 尊敬的用戶,歡迎您
</p>
<%String uname1=request.getParameter("uname1"); %>
<p><%=uname1 %></p>
<p>
<br><inputtype="text"name="uname1"size="8"value=""/></br>
<br><inputtype="text"name="uname2"size="8"value=""/></br>
<br><inputtype="text"name="uname3"size="8"value=""/></br>
<br><inputtype="text"name="uname4"size="8"value=""/></br>
<anchortitle="提交">提交
<gomethod="post"href="index.jsp"accept-charset="utf-8">
<postfieldname="uname"value="$(uname)"/>
</go>
</anchor>
</p>
</card>
</wml>
PC機的瀏覽器不能解析wml語言,如果在PC的瀏覽器通過localhost來訪問頁面則會彈出下載提示。
我的實例項目名稱wheat
本機IP地址 192.168.24.207
端口:8080
使用Android手機通過wifi接入局域網,在瀏覽器里面輸入 http://192.168.24.207:8080/wheat即可訪問wap頁面。
index.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd"> <html> <head> <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=UTF-8" /> <meta name="viewport" content="width=device-width; initial-scale=1.3; minimum-scale=1.0; maximum-scale=2.0" /> <meta name="apple-mobile-web-app-capable" content="yes" /> <meta http-equiv="Expires" content="0" /> <meta http-equiv="Pragma" content="no-cache" /> <meta http-equiv="Cache-Control" content="no-cache,no-store,max-age=0,s-maxage=0,must-revalidate" /> <link href="css/style.css" rel="stylesheet" type="text/css" /> <%@ taglib uri="/struts-tags" prefix="s"%> <title>農業信息采集系統</title> </head> <body> <div id="header"> <jsp:include page="header.jsp"></jsp:include> </div> <div> 歡迎您, <s:property value="#session.user.username" /> <br> ${sessionScope.user.username } </div> <div id="footer"> <jsp:include page="footer.jsp"></jsp:include> </div> </body> </html>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。