锘??xml version="1.0" encoding="utf-8" standalone="yes"?>亚洲成AV人片在线观看无,亚洲av片在线观看,亚洲精品国产专区91在线 http://www.tkk7.com/chenglu/category/37906.htmlIT fans,Java Programmer,Your partner...... zh-cn Thu, 25 Mar 2010 17:28:07 GMT Thu, 25 Mar 2010 17:28:07 GMT 60 jsp鍒ゆ柇resultset鏄惁涓虹┖ http://www.tkk7.com/chenglu/archive/2010/03/22/jsp-rs-null.htmlJava瀹呯敺 Java瀹呯敺 Mon, 22 Mar 2010 13:24:00 GMT http://www.tkk7.com/chenglu/archive/2010/03/22/jsp-rs-null.html http://www.tkk7.com/chenglu/comments/316211.html http://www.tkk7.com/chenglu/archive/2010/03/22/jsp-rs-null.html#Feedback 0 http://www.tkk7.com/chenglu/comments/commentRss/316211.html http://www.tkk7.com/chenglu/services/trackbacks/316211.html 1
2 if (rs.isAfterLast() == rs.isBeforeFirst()) {
3 out.print(" 鎮ㄦ墍鏌ユ壘鐨勪俊鎭笉瀛樺湪錛岃紜鍚庡啀鏌ユ壘! " );
4 }else {
5
6 } ]]>浣庤皟鐨刟pache fileUpload搴旂敤 http://www.tkk7.com/chenglu/archive/2009/09/23/apache_fileUpload.htmlJava瀹呯敺 Java瀹呯敺 Wed, 23 Sep 2009 04:08:00 GMT http://www.tkk7.com/chenglu/archive/2009/09/23/apache_fileUpload.html http://www.tkk7.com/chenglu/comments/296145.html http://www.tkk7.com/chenglu/archive/2009/09/23/apache_fileUpload.html#Feedback 0 http://www.tkk7.com/chenglu/comments/commentRss/296145.html http://www.tkk7.com/chenglu/services/trackbacks/296145.html
鐜板皢涓搴旂敤璐村嚭
FileUploadServlet.java
1 package Servlet;
2
3 import java.io.File;
4 import java.io.IOException;
5 import java.util.Iterator;
6 import java.util.List;
7
8 import javax.servlet.ServletException;
9 import javax.servlet.http.HttpServlet;
10 import javax.servlet.http.HttpServletRequest;
11 import javax.servlet.http.HttpServletResponse;
12
13 import org.apache.commons.fileupload.FileItem;
14 import org.apache.commons.fileupload.disk.DiskFileItemFactory;
15 import org.apache.commons.fileupload.servlet.ServletFileUpload;
16
17 @SuppressWarnings( " serial " )
18 public class FileUploadServlet extends HttpServlet {
19 private String uploadPath = " D:\\temp " ; // 涓婁紶鏂囦歡鐨勭洰褰?/span>
20 private String tempPath = " d:\\temp\\buffer\\ " ; // 涓存椂鏂囦歡鐩綍
21 File tempPathFile;
22
23 @SuppressWarnings( " unchecked " )
24 public void doPost(HttpServletRequest request, HttpServletResponse response)
25 throws IOException, ServletException {
26 try {
27 // Create a factory for disk-based file items
28 DiskFileItemFactory factory = new DiskFileItemFactory();
29
30 // Set factory constraints
31 factory.setSizeThreshold( 4096 ); // 璁劇疆緙撳啿鍖哄ぇ灝忥紝榪欓噷鏄?kb
32 factory.setRepository(tempPathFile); // 璁劇疆緙撳啿鍖虹洰褰?br />
33
34 // Create a new file upload handler
35 ServletFileUpload upload = new ServletFileUpload(factory);
36
37 // Set overall request size constraint
38 upload.setSizeMax( 4194304 ); // 璁劇疆鏈澶ф枃浠跺昂瀵革紝榪欓噷鏄?MB
39
40 List < FileItem > items = upload.parseRequest(request); // 寰楀埌鎵鏈夌殑鏂囦歡
41 Iterator < FileItem > i = items.iterator();
42 while (i.hasNext()) {
43 FileItem fi = (FileItem) i.next();
44 String fileName = fi.getName();
45 if (fileName != null ) {
46 File fullFile = new File(fi.getName());
47 File savedFile = new File(uploadPath, fullFile.getName());
48 fi.write(savedFile);
49 }
50 }
51 System.out.print( " upload succeed " );
52 } catch (Exception e) {
53 // 鍙互璺寵漿鍑洪敊欏甸潰
54 e.printStackTrace();
55 }
56 }
57
58 public void init() throws ServletException {
59 File uploadFile = new File(uploadPath);
60 if ( ! uploadFile.exists()) {
61 uploadFile.mkdirs();
62 }
63 File tempPathFile = new File(tempPath);
64 if ( ! tempPathFile.exists()) {
65 tempPathFile.mkdirs();
66 }
67 }
68 }
upload欏甸潰錛?br />
1 < form name ="myform" action ="FileUpload" method ="post" enctype ="multipart/form-data" >
2 File: < br >
3 < input type ="file" name ="myfile" >< br >
4 < br >
5 < input type ="submit" name ="submit" value ="Commit" >
6 </ form >
涓鑸潵璇達紝瑕佷嬌鐢╝pache fileUpload榪欎釜鎻掍歡錛屼竴鑸瀵煎叆涓や釜jar鍖?br />
commons-fileupload-1.2.1.jar
commons-io-1.3.2.jar
濡傛灉榪欎釜io鍖呮病鏈夊鍏ヨ矊浼間究浼氭姤閿欍?br />
鐐瑰嚮涓嬭澆榪欎袱涓寘鐨勬渶鏂扮増銆?br />
/Files/chenglu/java/FileUpLoad.zip
]]> 涓涓笉浼氭姤閿欑殑jsp褰╄壊楠岃瘉鐮佺▼搴?/title> http://www.tkk7.com/chenglu/archive/2009/09/22/no_err_jsp_code.htmlJava瀹呯敺 Java瀹呯敺 Tue, 22 Sep 2009 06:52:00 GMT http://www.tkk7.com/chenglu/archive/2009/09/22/no_err_jsp_code.html http://www.tkk7.com/chenglu/comments/296027.html http://www.tkk7.com/chenglu/archive/2009/09/22/no_err_jsp_code.html#Feedback 3 http://www.tkk7.com/chenglu/comments/commentRss/296027.html http://www.tkk7.com/chenglu/services/trackbacks/296027.html
涓鑸殑錛屼細鎶ervlet閿欒錛?br />
getOutputStream() has already been called for this response
浣嗘槸榪欎釜紼嬪簭涓嶄細鎶ラ敊錛屽師鍥犳槸鎶婇噷闈㈢殑絀烘牸閮藉垹闄?br />
-------------------------------------------------------------
鍦╰omcat涓璲sp緙栬瘧鎴恠ervlet涔嬪悗鍦ㄥ嚱鏁癬jspService(HttpServletRequest request, HttpServletResponse response )鐨勬渶鍚?br />
鏈変竴孌佃繖鏍風殑浠g爜
finally {
if (_jspxFactory != null) _jspxFactory.releasePageContext(_jspx_page_context);
}
榪欓噷鏄湪閲婃斁鍦╦sp涓嬌鐢ㄧ殑瀵硅薄錛屼細璋冪敤response .getWriter(),鍥犱負榪欎釜鏂規硶鏄拰
response .getOutputStream ()鐩稿啿紿佺殑錛佹墍浠ヤ細鍑虹幇浠ヤ笂榪欎釜寮傚父銆?
鐒跺悗褰撶劧鏄鎻愬嚭瑙e喅鐨勫姙娉曪紝鍏跺疄鎸虹畝鍗曠殑錛堝茍涓嶆槸鍜屾煇浜涙湅鍙嬭鐨勯偅鏍?-
灝唈sp鍐呯殑鎵鏈夌┖鏍煎拰鍥炶濺絎﹀彿鎵鏈夐兘鍒犻櫎鎺夛級錛?/p>
鍦ㄤ嬌鐢ㄥ畬杈撳嚭嫻佷互鍚庤皟鐢ㄤ互涓嬩袱琛屼唬鐮佸嵆鍙細
out.clear();
out = pageContext.pushBody();
--------------------------------------------------------
鍒嗗壊綰垮唴涓哄紩鐢綖
1 <% @ page import = " java.awt.*,java.awt.image.*,java.util.*,javax.imageio.* " %>
2 <% @ page import = " java.io.OutputStream " %>
3 <%!
4 Color getRandColor(int fc, int bc) {
5 Random random = new Random();
6 if (fc > 255 ) fc = 255 ;
7 if (bc > 255 ) bc = 255 ;
8 int r = fc + random.nextInt(bc - fc);
9 int g = fc + random.nextInt(bc - fc);
10 int b = fc + random.nextInt(bc - fc);
11 return new Color(r,g,b);
12 }
13 %>
14 <%
15 try {
16 response.setHeader(" Pragma " , " No-cache " );
17 response.setHeader(" Cache-Control " , " no-cache " );
18 response.setDateHeader(" Expires " , 0 );
19 int width = 60 , height = 20 ;
20 BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB);
21 OutputStream os= response.getOutputStream();
22 Graphics g = image.getGraphics();
23 Random random = new Random();
24 g.setColor(getRandColor(200 , 250 ));
25 g.fillRect(0 , 0 , width, height);
26
27 g.setFont(new Font( " Times New Roman " ,Font.PLAIN, 18 ));
28 g.setColor(getRandColor(160 , 200 ));
29 for ( int i = 0 ;i < 155 ;i ++ )
30 {
31 int x = random.nextInt(width);
32 int y = random.nextInt(height);
33 int xl = random.nextInt( 12 );
34 int yl = random.nextInt( 12 );
35 g.drawLine(x,y,x+ xl,y + yl);
36 }
37 String sRand= "" ;
38 for ( int i = 0 ;i < 4 ;i ++ ) {
39 String rand= String.valueOf(random.nextInt( 10 ));
40 sRand+= rand;
41 g.setColor(new Color( 20 + random.nextInt( 110 ), 20 + random.nextInt( 110 ), 20 + random.nextInt( 110 )));
42 g.drawString(rand,13 * i + 6 , 16 );
43 }
44 session.setAttribute(" rand " ,sRand);
45 g.dispose();
46
47 ImageIO.write(image, " JPEG " ,os);
48 os.flush();
49 os.close();
50 os= null ;
51 response.flushBuffer();
52 out.clear();
53 out = pageContext.pushBody();
54 }
55 catch (IllegalStateException e)
56 {
57 System.out.println(e.getMessage());
58 e.printStackTrace();
59 }%>
60
]]> 璋佸彲浠ュ府鎴戜竴涓嬶紵ewebeditor椋為奔淇敼鐗堥棶棰橈紒 http://www.tkk7.com/chenglu/archive/2009/05/05/ewebeditor.htmlJava瀹呯敺 Java瀹呯敺 Tue, 05 May 2009 11:13:00 GMT http://www.tkk7.com/chenglu/archive/2009/05/05/ewebeditor.html http://www.tkk7.com/chenglu/comments/269043.html http://www.tkk7.com/chenglu/archive/2009/05/05/ewebeditor.html#Feedback 0 http://www.tkk7.com/chenglu/comments/commentRss/269043.html http://www.tkk7.com/chenglu/services/trackbacks/269043.html 鏂囦歡涓婁紶鐨勬椂鍊欙紝鎶ラ敊
1 Status 500 -
2
3 --------------------------------------------------------------------------------
4
5 type Exception report
6
7 message
8
9 description The server encountered an internal error () that prevented it from fulfilling this request.
10
11 exception
12
13 org.apache.jasper.JasperException: An exception occurred processing JSP page /upload.jsp at line 302
14
15 299: if (!myFile.isMissing()) {
16 300: FileName=(String)date.Time_Stamp();
17 301: sOriginalFileName=myFile.getFileName();
18 302: myFile.saveAs("/"+sUploadDir+FileName+"."+myFile.getFileExt());
19 303: sSaveFileName=FileName+"."+myFile.getFileExt();
20 304: sPathFileName=sUploadDir+sSaveFileName;
21 305: System.out.println(sPathFileName);
22
23
24 Stacktrace:
25 org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:505)
26 org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:416)
27 org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
28 org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
29 javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
30 sun.reflect.GeneratedMethodAccessor18.invoke(Unknown Source)
31 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
32 java.lang.reflect.Method.invoke(Method.java:597)
33 org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:244)
34 java.security.AccessController.doPrivileged(Native Method)
35 javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
36 org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:276)
37 org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:162)
38
39
40 root cause
41
42 java.security.AccessControlException: access denied (java.io.FilePermission \UploadFile read)
43 java.security.AccessControlContext.checkPermission(AccessControlContext.java:323)
44 java.security.AccessController.checkPermission(AccessController.java:546)
45 java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
46 java.lang.SecurityManager.checkRead(SecurityManager.java:871)
47 java.io.File.exists(File.java:731)
48 com.jspsmart.upload.SmartUpload.getPhysicalPath(SmartUpload.java:1067)
49 com.jspsmart.upload.File.saveAs(File.java:91)
50 com.jspsmart.upload.File.saveAs(File.java:65)
51 org.apache.jsp.upload_jsp._jspService(upload_jsp.java:376)
52 org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:70)
53 javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
54 org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:374)
55 org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:342)
56 org.apache.jasper.servlet.JspServlet.service(JspServlet.java:267)
57 javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
58 sun.reflect.GeneratedMethodAccessor18.invoke(Unknown Source)
59 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
60 java.lang.reflect.Method.invoke(Method.java:597)
61 org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:244)
62 java.security.AccessController.doPrivileged(Native Method)
63 javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
64 org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:276)
65 org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:162)
66
67
68 note The full stack trace of the root cause is available in the Apache Tomcat/6.0.18 logs.
69
70
71 --------------------------------------------------------------------------------
72
73 Apache Tomcat/6.0.18
姝e父涓婁紶tomcat鐨勬彁紺烘槸錛?br />
gif|jpg|jpeg|bmp|GIF|JPG|JPEG|BMP500
UploadFile/20090505063838906.jpg
寮傚父鐨勬椂鍊欐槸錛?br />
gif|jpg|jpeg|bmp|GIF|JPG|JPEG|BMP500
UploadFile/
鑻︽伡涓?#8230;………
]]>jsp-session http://www.tkk7.com/chenglu/archive/2009/03/05/jsp-session.htmlJava瀹呯敺 Java瀹呯敺 Thu, 05 Mar 2009 07:47:00 GMT http://www.tkk7.com/chenglu/archive/2009/03/05/jsp-session.html http://www.tkk7.com/chenglu/comments/258020.html http://www.tkk7.com/chenglu/archive/2009/03/05/jsp-session.html#Feedback 0 http://www.tkk7.com/chenglu/comments/commentRss/258020.html http://www.tkk7.com/chenglu/services/trackbacks/258020.html session浠庣涓涓〉闈紶鍒扮浜屼釜
鐪嬩唬鐮侊細
1 <% @ page contentType = " text/html; charset=gb2312 " language = " java " import = " java.sql.* " errorPage = "" %>
2 <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
3 < html xmlns ="http://www.w3.org/1999/xhtml" >
4 < head >
5 < meta http-equiv ="Content-Type" content ="text/html; Charset=gb2312" />
6 < title > 鏃犳爣棰樻枃妗?/span></ title >
7 </ head >
8
9 < body >
10 < form action ="" name ="form1" method ="post" >
11 < p > 鍦板潃錛?br />
12 < input type ="text" name ="useradd" />
13 < br >
14 < br >
15 閭紪錛?br />
16 < input type ="text" name ="code" />
17 </ p >
18 < p > 鎮ㄧ殑濮撳悕錛?br />
19 < input type ="text" name ="username" /></ p >
20 < p >
21 < input type ="submit" value ="淇濆瓨" />
22 </ p >
23 </ form >
24 <%
25 String useradd = request.getParameter( " useradd " );
26 String code = request.getParameter( " code " );
27
28 if (useradd! = null ){
29 String username = request.getParameter( " username " );
30 session.setAttribute(" csname " ,username);
31 out.println(" 鎮ㄥ~鍐欑殑鍦板潃鏄? " + useradd);
32 out.println(" <br><br> " );
33 out.println(" 鎮ㄥ~鍐欑殑閭紪鏄? " + code);
34 out.println(" <p><a href=\ " check.jsp \ " >涓嬩竴姝?lt;/a> " );
35 }
36 %>
37
38 </ body >
39 </ html >
40
欏甸潰2錛歝heck.jsp
1 <% @ page contentType = " text/html; charset=gb2312 " language = " java " %>
2 <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
3 < html xmlns ="http://www.w3.org/1999/xhtml" >
4 < head >
5 < meta http-equiv ="Content-Type" content ="text/html; charset=gb2312" />
6 < title > 鏃犳爣棰樻枃妗?/span></ title >
7 </ head >
8 < body >
9 <%
10 String csname = ( String )session.getAttribute( " csname " );
11 out.println(csname);
12 %>
13
14 </ body >
15 </ html >
16
]]> JSP-response緇冧範 錛堝皬瀛︽牎灝忚鍫傚皬緇冧範錛?/title> http://www.tkk7.com/chenglu/archive/2009/03/03/JSP-response.htmlJava瀹呯敺 Java瀹呯敺 Tue, 03 Mar 2009 03:30:00 GMT http://www.tkk7.com/chenglu/archive/2009/03/03/JSP-response.html http://www.tkk7.com/chenglu/comments/257497.html http://www.tkk7.com/chenglu/archive/2009/03/03/JSP-response.html#Feedback 0 http://www.tkk7.com/chenglu/comments/commentRss/257497.html http://www.tkk7.com/chenglu/services/trackbacks/257497.html
index.html
1 <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
2 < html xmlns ="http://www.w3.org/1999/xhtml" >
3 < head >
4 < meta http-equiv ="Content-Type" content ="text/html; charset=gb2312" />
5 < title > 棣栭〉 </ title >
6 </ head >
7
8 < body >
9 < form action ="check.jsp" method ="post" >
10 < p > 杈撳叆鎮ㄧ殑鐢ㄦ埛鍚?br />
11 < input type ="text" name ="username" />
12 </ p >
13 < p > 杈撳叆鎮ㄧ殑瀵嗙爜錛?br />
14 < input name ="pwd" type ="password" value ="" />
15 </ p >
16 < input type ="submit" value ="check it!" />
17 </ form >
18 </ body >
19 </ html >
20
second:
check.jsp
1 <% @ page contentType = " text/html; charset=gb2312 " language = " java " import = " java.sql.* " errorPage = "" %>
2 <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
3 < html xmlns ="http://www.w3.org/1999/xhtml" >
4 < head >
5 < meta http-equiv ="Content-Type" content ="text/html; charset=gb2312" />
6 <!-- TemplateBeginEditable name="doctitle" -->
7 < title > checking . </ title >
8 <!-- TemplateEndEditable -->
9 <!-- TemplateBeginEditable name="head" -->
10 <!-- TemplateEndEditable -->
11 </ head >
12
13 < body >
14 <%
15
16 if (request.getParameter( " username " ).equals( " admin " )){
17 response.sendRedirect(" admin.jsp " );
18 }
19 else {
20 response.sendRedirect(" welcome.jsp " );
21 }
22
23
24 %>
25 </ body >
26 </ html >
result Page:
user Page:welcome.jsp
1 <% @ page contentType = " text/html; charset=gb2312 " language = " java " import = " java.sql.* " errorPage = "" %>
2 <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
3 < html xmlns ="http://www.w3.org/1999/xhtml" >
4 < head >
5 < meta http-equiv ="Content-Type" content ="text/html; charset=gb2312" />
6 < title > 鏃犳爣棰樻枃妗?/span></ title >
7 </ head >
8
9 < body >
10 < h1 > u r welcome! < br >
11 嬈㈣繋榪涘叆鐢ㄦ埛浼氬憳涓績</ h1 >
12 </ body >
13 </ html >
admin Page:
1 <% @ page contentType = " text/html; charset=gb2312 " language = " java " import = " java.sql.* " errorPage = "" %>
2 <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" >
3 < html xmlns ="http://www.w3.org/1999/xhtml" >
4 < head >
5 < meta http-equiv ="Content-Type" content ="text/html; charset=gb2312" />
6 < title > Admin </ title >
7 </ head >
8
9 < body >
10 < h1 >
11 榪欓噷鏄悗鍙扮鐞?/span></ h1 >
12 </ body >
13 </ html >
14
]]> JSP---request鏂規硶 http://www.tkk7.com/chenglu/archive/2009/02/26/jsp-helloworld.htmlJava瀹呯敺 Java瀹呯敺 Thu, 26 Feb 2009 06:31:00 GMT http://www.tkk7.com/chenglu/archive/2009/02/26/jsp-helloworld.html http://www.tkk7.com/chenglu/comments/256813.html http://www.tkk7.com/chenglu/archive/2009/02/26/jsp-helloworld.html#Feedback 0 http://www.tkk7.com/chenglu/comments/commentRss/256813.html http://www.tkk7.com/chenglu/services/trackbacks/256813.html 1 < form name = " form1 " method = " post " action = " doit.jsp " >
2 // 鎵鏈夌殑琛ㄥ崟紼嬪簭蹇呴』鍐欏湪form琛ㄥ崟閲?/span>
3 < input type = " checkbox " name = " color " value = " color " 綰㈣壊 >
4 < input type = " checkbox " name = " color " value = " green " 緇胯壊 >
5 < input type = " checkbox " name = " color " value = " yellow " 榛勮壊 >
6 </ form >
7
8
9
10 doit.jsp
11 <% @ page contentType = " text/html " ;Charset = GBK; %>
12 <%
13 String color[] = request.getParameterValues( " color " );
14 for ( int i = 0 ;i <= color.length - 1 ;i ++ ) {
15 out.println(" color " + color[i] + " " );
16 }
17 %>
18 // request.getParameterValues("color")闇瑕佺敤鏁扮粍鏉ユ帴鏀?nbsp;
]]>
主站蜘蛛池模板:
久久er国产精品免费观看2 |
免费精品一区二区三区在线观看
|
欧洲亚洲国产清在高 |
在线精品亚洲一区二区 |
国产成人AV免费观看 |
免费人成视频x8x8入口 |
youjizz亚洲 |
99视频精品全部免费观看 |
亚洲精品tv久久久久 |
亚洲熟女综合色一区二区三区 |
日本在线免费观看 |
亚洲成AⅤ人影院在线观看 |
亚洲AV无码成人专区 |
污污网站免费观看 |
亚洲欧洲日产国码一级毛片 |
亚洲另类无码一区二区三区 |
亚洲视频免费播放 |
亚洲av无码一区二区三区不卡 |
人妻免费久久久久久久了 |
国产高清在线精品免费软件 |
亚洲av午夜精品无码专区 |
免费国产黄网站在线观看
|
亚洲丰满熟女一区二区v |
久久综合九色综合97免费下载 |
国产精品亚洲二区在线观看 |
亚洲AV无码一区二区三区牲色 |
免费无码又爽又刺激聊天APP |
77777_亚洲午夜久久多人 |
免费看黄的成人APP |
国产亚洲老熟女视频 |
一进一出60分钟免费视频 |
国产一级淫片免费播放 |
亚洲AV无码一区二区三区电影 |
无码免费午夜福利片在线 |
亚洲国产日韩在线成人蜜芽 |
999任你躁在线精品免费不卡 |
亚洲av日韩综合一区在线观看 |
嫩草在线视频www免费看 |
国产V亚洲V天堂A无码 |
a色毛片免费视频 |
亚洲乱码中文字幕综合 |