青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

C++ Programmer's Cookbook

{C++ 基礎(chǔ)} {C++ 高級} {C#界面,C++核心算法} {設(shè)計模式} {C#基礎(chǔ)}

C#入門代碼

轉(zhuǎn)自:http://www.cnblogs.com/lyj/archive/2007/01/09/616053.html

一、從控制臺讀取東西代碼片斷:

using System;

class TestReadConsole
{
    public static void Main()
    {
        Console.Write(Enter your name:);
        string strName = Console.ReadLine();
        Console.WriteLine( Hi + strName);
    }
}
二、讀文件代碼片斷:
using System;
using System.IO;

public class TestReadFile
{
    public static void Main(String[] args)
    {
        // Read text file C:\temp\test.txt
        FileStream fs = new FileStream(@c:\temp\test.txt , FileMode.Open, FileAccess.Read);
        StreamReader sr = new StreamReader(fs); 
       
        String line=sr.ReadLine();
        while (line!=null)
        {
            Console.WriteLine(line);
            line=sr.ReadLine();
        }  
       
        sr.Close();
        fs.Close();
    }
}
三、寫文件代碼:
using System;
using System.IO;

public class TestWriteFile
{
    public static void Main(String[] args)
    {
        // Create a text file C:\temp\test.txt
        FileStream fs = new FileStream(@c:\temp\test.txt , FileMode.OpenOrCreate, FileAccess.Write);
        StreamWriter sw = new StreamWriter(fs);
        // Write to the file using StreamWriter class
        sw.BaseStream.Seek(0, SeekOrigin.End);
        sw.WriteLine( First Line );
        sw.WriteLine( Second Line);
        sw.Flush();
    }
}
四、拷貝文件:
using System;
using System.IO;

class TestCopyFile
{
    public static void Main()
    {
        File.Copy(c:\\temp\\source.txt, C:\\temp\\dest.txt ); 
    }
}
五、移動文件:
using System;
using System.IO;

class TestMoveFile
{
    public static void Main()
    {
        File.Move(c:\\temp\\abc.txt, C:\\temp\\def.txt ); 
    }
}
六、使用計時器:
using System;
using System.Timers;

class TestTimer
{
    public static void Main()
    {
        Timer timer = new Timer();
        timer.Elapsed += new ElapsedEventHandler( DisplayTimeEvent );
        timer.Interval = 1000;
        timer.Start();
        timer.Enabled = true;

        while ( Console.Read() != 'q' )
        {
             //-------------
        }
    }
    public static void DisplayTimeEvent( object source, ElapsedEventArgs e )
    {
        Console.Write(\r{0}, DateTime.Now);
    }
}
七、調(diào)用外部程序:
class Test
{
    static void Main(string[] args)
    {
        System.Diagnostics.Process.Start(notepad.exe);
    }
}

ADO.NET方面的:
八、連接Access數(shù)據(jù)庫:
using System;
using System.Data;
using System.Data.OleDb;

class TestADO
{
    static void Main(string[] args)
    {
        string strDSN = Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\\test.mdb;
        string strSQL = SELECT * FROM employees ;

        OleDbConnection conn = new OleDbConnection(strDSN);
        OleDbCommand cmd = new OleDbCommand( strSQL, conn );
        OleDbDataReader reader = null;
        try
        {
            conn.Open();
            reader = cmd.ExecuteReader();
            while (reader.Read() )
            {
                Console.WriteLine(First Name:{0}, Last Name:{1}, reader[FirstName], reader[LastName]);
            }
        }
        catch (Exception e)
        {
            Console.WriteLine(e.Message);
        }
        finally
        {
            conn.Close();
        }
    }
}
九、連接SQL Server數(shù)據(jù)庫:
using System;
using System.Data.SqlClient;

public class TestADO
{
    public static void Main()
    {
        SqlConnection conn = new SqlConnection(Data Source=localhost; Integrated Security=SSPI; Initial Catalog=pubs);
        SqlCommand  cmd = new SqlCommand(SELECT * FROM employees, conn);
        try
        {       
            conn.Open();

            SqlDataReader reader = cmd.ExecuteReader();           
            while (reader.Read())
            {
                Console.WriteLine(First Name: {0}, Last Name: {1}, reader.GetString(0), reader.GetString(1));
            }
       
            reader.Close();
            conn.Close();
        }
        catch(Exception e)
        {
            Console.WriteLine(Exception Occured -->> {0},e);
        }       
    }
}
十、從SQL內(nèi)讀數(shù)據(jù)到XML:
using System;
using System.Data;
using System.Xml;
using System.Data.SqlClient;
using System.IO;

public class TestWriteXML
{
    public static void Main()
    {

        String strFileName=c:/temp/output.xml;

        SqlConnection conn = new SqlConnection(server=localhost;uid=sa;pwd=;database=db);

        String strSql = SELECT FirstName, LastName FROM employees;

        SqlDataAdapter adapter = new SqlDataAdapter();

        adapter.SelectCommand = new SqlCommand(strSql,conn);

        // Build the DataSet
        DataSet ds = new DataSet();

        adapter.Fill(ds, employees);

        // Get a FileStream object
        FileStream fs = new FileStream(strFileName,FileMode.OpenOrCreate,FileAccess.Write);

        // Apply the WriteXml method to write an XML document
        ds.WriteXml(fs);

        fs.Close();

    }
}
十一、用ADO添加數(shù)據(jù)到數(shù)據(jù)庫中:
using System;
using System.Data;  
using System.Data.OleDb;  

class TestADO

    static void Main(string[] args) 
    { 
        string strDSN = Provider=Microsoft.Jet.OLEDB.4.0;DataSource=c:\test.mdb; 
        string strSQL = INSERT INTO Employee(FirstName, LastName) VALUES('FirstName', 'LastName') ; 
                  
        // create Objects of ADOConnection and ADOCommand  
        OleDbConnection conn = new OleDbConnection(strDSN); 
        OleDbCommand cmd = new OleDbCommand( strSQL, conn ); 
        try 
        { 
            conn.Open(); 
            cmd.ExecuteNonQuery(); 
        } 
        catch (Exception e) 
        { 
            Console.WriteLine(Oooops. I did it again:\n{0}, e.Message); 
        } 
        finally 
        { 
            conn.Close(); 
        }         
    }

十二、使用OLEConn連接數(shù)據(jù)庫:
using System;
using System.Data;  
using System.Data.OleDb;  

class TestADO

    static void Main(string[] args) 
    { 
        string strDSN = Provider=Microsoft.Jet.OLEDB.4.0;DataSource=c:\test.mdb; 
        string strSQL = SELECT * FROM employee ; 

        OleDbConnection conn = new OleDbConnection(strDSN);
        OleDbDataAdapter cmd = new OleDbDataAdapter( strSQL, conn );

        conn.Open();
        DataSet ds = new DataSet();
        cmd.Fill( ds, employee );
        DataTable dt = ds.Tables[0];

        foreach( DataRow dr in dt.Rows )
        {
            Console.WriteLine(First name: + dr[FirstName].ToString() + Last name: + dr[LastName].ToString());
        }
        conn.Close(); 
    }

十三、讀取表的屬性:
using System;
using System.Data;  
using System.Data.OleDb;  

class TestADO

    static void Main(string[] args) 
    { 
        string strDSN = Provider=Microsoft.Jet.OLEDB.4.0;DataSource=c:\test.mdb; 
        string strSQL = SELECT * FROM employee ; 

        OleDbConnection conn = new OleDbConnection(strDSN);
        OleDbDataAdapter cmd = new OleDbDataAdapter( strSQL, conn );

        conn.Open();
        DataSet ds = new DataSet();
        cmd.Fill( ds, employee );
        DataTable dt = ds.Tables[0];

        Console.WriteLine(Field Name DataType Unique AutoIncrement AllowNull);
        Console.WriteLine(==================================================================);
        foreach( DataColumn dc in dt.Columns )
        {
            Console.WriteLine(dc.ColumnName+ , +dc.DataType + ,+dc.Unique + ,+dc.AutoIncrement+ ,+dc.AllowDBNull );
        }
        conn.Close(); 
    }
}

ASP.NET方面的
十四、一個ASP.NET程序:
<%@ Page Language=C# %>
<script runat=server>
  
    void Button1_Click(Object sender, EventArgs e)
    {
        Label1.Text=TextBox1.Text;
    }

</script>
<html>
<head>
</head>
<body>
    <form runat=server>
        <p>
            <br />
            Enter your name: <asp:TextBox id=TextBox1 runat=server></asp:TextBox>
        </p>
        <p>
            <b><asp:Label id=Label1 runat=server Width=247px></asp:Label></b>
        </p>
        <p>
            <asp:Button id=Button1 onclick=Button1_Click runat=server Text=Submit></asp:Button>
        </p>
    </form>
</body>
</html>

WinForm開發(fā):
十五、一個簡單的WinForm程序:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;


public class SimpleForm : System.Windows.Forms.Form
{

    private System.ComponentModel.Container components = null;
    private System.Windows.Forms.Button button1;
    private System.Windows.Forms.TextBox textBox1;
    public SimpleForm()
    {
        InitializeComponent();
    }

    protected override void Dispose( bool disposing )
    {
        if( disposing )
        {
            if (components != null)
            {
                components.Dispose();
            }
        }
        base.Dispose( disposing );
    }

    #region Windows Form Designer generated code
    private void InitializeComponent()
    {

        this.components = new System.ComponentModel.Container();
        this.Size = new System.Drawing.Size(300,300);
        this.Text = Form1;

        this.button1 = new System.Windows.Forms.Button();
        this.textBox1 = new System.Windows.Forms.TextBox();
        this.SuspendLayout();
    //
    // button1
    //

    this.button1.Location = new System.Drawing.Point(8, 16);
    this.button1.Name = button1;
    this.button1.Size = new System.Drawing.Size(80, 24);
    this.button1.TabIndex = 0;
    this.button1.Text = button1;

    //
    // textBox1
    //
    this.textBox1.Location = new System.Drawing.Point(112, 16);
    this.textBox1.Name = textBox1;
    this.textBox1.Size = new System.Drawing.Size(160, 20);
    this.textBox1.TabIndex = 1;
    this.textBox1.Text = textBox1;
    //
    // Form1
    //

    this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
    this.ClientSize = new System.Drawing.Size(292, 273);
    this.Controls.AddRange(new System.Windows.Forms.Control[] {
    this.textBox1,
    this.button1});
    this.Name = Form1;
    this.Text = Form1;
    this.ResumeLayout(false);

    }
    #endregion

    [STAThread]
    static void Main()
    {
        Application.Run(new SimpleForm());
    }
}
十六、運行時顯示自己定義的圖標(biāo):
//load icon and set to form
System.Drawing.Icon ico = new System.Drawing.Icon(@c:\temp\app.ico);
this.Icon = ico;
十七、添加組件到ListBox中:
private void Form1_Load(object sender, System.EventArgs e)
{
    string str = First item;
    int i = 23;
    float flt = 34.98f;
    listBox1.Items.Add(str);
    listBox1.Items.Add(i.ToString());
    listBox1.Items.Add(flt.ToString());
    listBox1.Items.Add(Last Item in the List Box);
}

網(wǎng)絡(luò)方面的:
十八、取得IP地址:
using System;
using System.Net;

class GetIP
{
     public static void Main()
     {
         IPHostEntry ipEntry = Dns.GetHostByName (localhost);
         IPAddress [] IpAddr = ipEntry.AddressList;
         for (int i = 0; i < IpAddr.Length; i++)
         {
             Console.WriteLine (IP Address {0}: {1} , i, IpAddr.ToString ());
         }
    }
}
十九、取得機器名稱:
using System;
using System.Net;

class GetIP
{
    public static void Main()
    {
          Console.WriteLine (Host name : {0}, Dns.GetHostName());
    }
}
二十、發(fā)送郵件:
using System;
using System.Web;
using System.Web.Mail;

public class TestSendMail
{
    public static void Main()
    {
        try
        {
            // Construct a new mail message
            MailMessage message = new MailMessage();
            message.From = from@domain.com;
            message.To   =  pengyun@cobainsoft.com;
            message.Cc   = ;
            message.Bcc  = ;

            message.Subject = Subject;
            message.Body = Content of message;
           
            //if you want attach file with this mail, add the line below
            message.Attachments.Add(new MailAttachment(c:\\attach.txt, MailEncoding.Base64));
 
            // Send the message
            SmtpMail.Send(message); 
            System.Console.WriteLine(Message has been sent);
        }

        catch(Exception ex)
        {
            System.Console.WriteLine(ex.Message.ToString());
        }

    }
}
二十一、根據(jù)IP地址得出機器名稱:
using System;
using System.Net;

class ResolveIP
{
     public static void Main()
     {
         IPHostEntry ipEntry = Dns.Resolve(172.29.9.9);
         Console.WriteLine (Host name : {0}, ipEntry.HostName);        
     }
}

GDI+方面的:
二十二、GDI+入門介紹:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

public class Form1 : System.Windows.Forms.Form
{
    private System.ComponentModel.Container components = null;

    public Form1()
    {
        InitializeComponent();
    }

    protected override void Dispose( bool disposing )
    {
        if( disposing )
        {
            if (components != null)
            {
                components.Dispose();
            }
        }
        base.Dispose( disposing );
    }

    #region Windows Form Designer generated code
    private void InitializeComponent()
    {
        this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
        this.ClientSize = new System.Drawing.Size(292, 273);
        this.Name = Form1;
        this.Text = Form1;
        this.Paint += new System.Windows.Forms.PaintEventHandler(this.Form1_Paint);
    }
    #endregion

    [STAThread]
    static void Main()
    {
        Application.Run(new Form1());
    }

    private void Form1_Paint(object sender, System.Windows.Forms.PaintEventArgs e)
    {
        Graphics g=e.Graphics;
        g.DrawLine(new Pen(Color.Blue),10,10,210,110);
        g.DrawRectangle(new Pen(Color.Red),10,10,200,100);
        g.DrawEllipse(new Pen(Color.Yellow),10,150,200,100);
    }
}

XML方面的:
二十三、讀取XML文件:
using System;
using System.Xml; 

class TestReadXML
{
    public static void Main()
    {
       
        XmlTextReader reader  = new XmlTextReader(C:\\test.xml);
        reader.Read();
       
        while (reader.Read())
        {           
            reader.MoveToElement();
            Console.WriteLine(XmlTextReader Properties Test);
            Console.WriteLine(===================); 

            // Read this properties of element and display them on console
            Console.WriteLine(Name: + reader.Name);
            Console.WriteLine(Base URI: + reader.BaseURI);
            Console.WriteLine(Local Name: + reader.LocalName);
            Console.WriteLine(Attribute Count: + reader.AttributeCount.ToString());
            Console.WriteLine(Depth: + reader.Depth.ToString());
            Console.WriteLine(Line Number: + reader.LineNumber.ToString());
            Console.WriteLine(Node Type: + reader.NodeType.ToString());
            Console.WriteLine(Attribute Count: + reader.Value.ToString());
        }       
    }              
}
二十四、寫XML文件:
using System;
using System.Xml;

public class TestWriteXMLFile
{
    public static int Main(string[] args)
    {
        try
        { 
            // Creates an XML file is not exist
            XmlTextWriter writer = new XmlTextWriter(C:\\temp\\xmltest.xml, null);
            // Starts a new document
            writer.WriteStartDocument();
            //Write comments
            writer.WriteComment(Commentss: XmlWriter Test Program);
            writer.WriteProcessingInstruction(Instruction,Person Record);
            // Add elements to the file
            writer.WriteStartElement(p, person, urn:person);
            writer.WriteStartElement(LastName,);
            writer.WriteString(Chand);
            writer.WriteEndElement();
            writer.WriteStartElement(FirstName,);
            writer.WriteString(Mahesh);
            writer.WriteEndElement();
            writer.WriteElementInt16(age,, 25);
            // Ends the document
            writer.WriteEndDocument();
        }
        catch (Exception e)
        { 
            Console.WriteLine (Exception: {0}, e.ToString());
        }
        return 0;
    }
}

Web Service方面的:
二十五、一個Web Service的小例子:
<% @WebService Language=C# Class=TestWS %>

using System.Web.Services;

public class TestWS : System.Web.Services.WebService
{
    [WebMethod()]
    public string StringFromWebService()
    {
        return This is a string from web service.;
    }
}

posted on 2008-06-18 12:08 夢在天涯 閱讀(6934) 評論(4)  編輯 收藏 引用 所屬分類: C#/.NET

評論

# re: C#入門代碼 2008-07-17 22:12 honeymorning

很好,很強大。  回復(fù)  更多評論   

# re: C#入門代碼 2008-10-28 23:14 JimmyQi

值得學(xué)習(xí)。如果每種里面有更多的例子和更多的解釋就更好了。JimmyQI  回復(fù)  更多評論   

# re: C#入門代碼 2011-05-06 15:44 re: C#入門代碼

有注解就更好了!  回復(fù)  更多評論   

# re: C#入門代碼 2012-06-29 15:08 窩窩

假期輕松在家做兼職,一單一結(jié),80/小時
職位要求:
1.有上網(wǎng)條件,兼職/專職均可,在家上網(wǎng)兼職
2.每天需保證2-3小時的上網(wǎng)時間
3.有簡單網(wǎng)絡(luò)知識和網(wǎng)購網(wǎng)站應(yīng)用的基礎(chǔ)如:下載都不會勿擾
4.操作網(wǎng)購任務(wù),一單只需要花費你5-15分鐘的時間。
一個任務(wù)酬勞為5元-40元不等,操作完一單 即刻發(fā)放薪酬,
絕無拖欠工資! 操作簡單易懂,只要你在網(wǎng)購購過物的朋友
都能輕易學(xué)會,并且熟練操作,加快您的操作速度,您的薪資
就會相應(yīng)的提升,想兼職,又不想影響正職朋友。
淘寶客服QQ: 1163466921 陳小姐  回復(fù)  更多評論   

公告

EMail:itech001#126.com

導(dǎo)航

統(tǒng)計

  • 隨筆 - 461
  • 文章 - 4
  • 評論 - 746
  • 引用 - 0

常用鏈接

隨筆分類

隨筆檔案

收藏夾

Blogs

c#(csharp)

C++(cpp)

Enlish

Forums(bbs)

My self

Often go

Useful Webs

Xml/Uml/html

搜索

  •  

積分與排名

  • 積分 - 1816188
  • 排名 - 5

最新評論

閱讀排行榜

青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
      <noscript id="pjuwb"></noscript>
            <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
              <dd id="pjuwb"></dd>
              <abbr id="pjuwb"></abbr>
              欧美日韩国产一区二区三区地区| 亚洲国产精品第一区二区| 在线看欧美日韩| 国产精品卡一卡二卡三| 老色批av在线精品| 亚洲综合成人在线| 亚洲三级性片| 欧美国产日韩在线观看| 久久精品日产第一区二区三区| 一本不卡影院| 亚洲国产精品激情在线观看| 国产日韩在线不卡| 国产精品分类| 欧美日一区二区三区在线观看国产免| 久热re这里精品视频在线6| 亚洲免费在线观看| 洋洋av久久久久久久一区| 亚洲电影欧美电影有声小说| 久久全球大尺度高清视频| 午夜在线成人av| 亚洲一区二区三区激情| 日韩亚洲欧美高清| 亚洲精品欧美在线| 亚洲国产精品一区二区三区| 极品少妇一区二区| 一区视频在线播放| 麻豆freexxxx性91精品| 欧美高清在线视频| 麻豆freexxxx性91精品| 久久久亚洲一区| 久久精品视频一| 欧美一级淫片播放口| 在线视频欧美精品| 日韩视频免费在线观看| 99re成人精品视频| 99在线热播精品免费| 亚洲日本中文字幕| 亚洲剧情一区二区| 一区二区免费在线视频| 一区二区三区四区五区视频| 一区二区三区四区五区在线| 夜夜嗨av一区二区三区免费区| 99亚洲视频| 亚洲一区在线免费| 亚洲欧美亚洲| 亚洲欧美自拍偷拍| 欧美高清视频一区| 欧美二区在线看| 欧美日韩黄色一区二区| 欧美调教视频| 国产婷婷成人久久av免费高清| 国产亚洲欧美日韩日本| 亚洲第一精品福利| 亚洲久久一区二区| 亚洲一区国产| 久久精品电影| 欧美aaa级| 亚洲国产精品va| 亚洲久色影视| 99国产精品国产精品久久| 久久综合九色欧美综合狠狠| 亚洲第一在线视频| 亚洲日本成人女熟在线观看| 亚洲国产一区在线| 亚洲免费电影在线观看| 一区二区三区色| 亚洲在线观看视频| 欧美在线观看一二区| 欧美成人国产va精品日本一级| 欧美国产日韩在线| 欧美三级黄美女| 国产伦精品一区二区三区在线观看 | 欧美ed2k| 亚洲国产天堂久久综合网| 欧美韩日高清| 亚洲精品一区二区三区蜜桃久| 日韩午夜电影av| 午夜精品久久久久久久99水蜜桃| 久久精品一区蜜桃臀影院| 免费一级欧美片在线播放| 欧美日本亚洲视频| 国产欧美日韩伦理| 亚洲第一色中文字幕| 一本大道久久精品懂色aⅴ| 亚洲天堂av在线免费观看| 亚洲欧美精品伊人久久| 久久久av毛片精品| 亚洲国产成人一区| 亚洲愉拍自拍另类高清精品| 久久久久久黄| 欧美黄色网络| 国产亚洲欧美aaaa| 亚洲日本aⅴ片在线观看香蕉| 欧美中文在线字幕| 亚洲第一黄色| 亚洲男女毛片无遮挡| 免费久久99精品国产| 欧美四级电影网站| 国内在线观看一区二区三区| 亚洲免费观看高清完整版在线观看熊 | 欧美不卡在线视频| 国产精品视频自拍| 亚洲日韩第九十九页| 午夜性色一区二区三区免费视频| 性xx色xx综合久久久xx| 亚洲精品免费电影| 销魂美女一区二区三区视频在线| 欧美福利视频网站| 国内精品免费午夜毛片| 亚洲人成毛片在线播放| 午夜视频在线观看一区二区三区| 久久亚洲高清| 欧美日韩不卡一区| 一区二区三区亚洲| 久久精品免费播放| 亚洲美女视频在线观看| 久久九九热免费视频| 国产精品乱码妇女bbbb| 亚洲伦理网站| 欧美成人一区二区三区在线观看 | 欧美成人精精品一区二区频| 国产精品亚洲美女av网站| 日韩一区二区免费高清| 另类国产ts人妖高潮视频| 亚洲综合色丁香婷婷六月图片| 欧美国产1区2区| 一区视频在线| 久久综合九色综合欧美就去吻| 一区二区三区精品视频| 欧美精品 日韩| 国产一区二区三区久久精品| 亚洲你懂的在线视频| 亚洲人成亚洲人成在线观看| 久久精品国产一区二区三| 国产精品久久国产精品99gif| 亚洲精品小视频在线观看| 尤物99国产成人精品视频| 亚洲自拍三区| 欧美黄色aa电影| 亚洲综合国产| 欧美经典一区二区| 狠狠久久亚洲欧美专区| 亚洲乱码视频| 美国十次了思思久久精品导航| 一区二区三区四区国产| 亚洲综合第一| 国产精品日韩电影| 亚洲毛片在线观看| 久久久蜜桃精品| 中文国产成人精品久久一| 免费久久精品视频| 国内精品久久久久久| 亚洲伊人色欲综合网| 欧美第一黄色网| 久久午夜羞羞影院免费观看| 国产精品一区二区黑丝| 99综合精品| 欧美激情视频一区二区三区在线播放 | 夜夜嗨一区二区| 免费在线欧美黄色| 国产亚洲午夜高清国产拍精品| 亚洲激情成人在线| 欧美自拍偷拍午夜视频| 一区二区三区日韩在线观看| 欧美激情偷拍| 亚洲国产乱码最新视频| 欧美国产高潮xxxx1819| 久久久久国产精品一区| 国产亚洲电影| 久久国产日韩| 欧美一区二区观看视频| 国产精品综合| 久久国产主播| 欧美在线电影| 国产一区二区三区免费不卡| 99re8这里有精品热视频免费 | av成人老司机| 亚洲国产欧美一区二区三区同亚洲| 久久久亚洲国产天美传媒修理工| 国产欧美另类| 久久国产视频网站| 亚洲欧美另类综合偷拍| 国产精品欧美久久久久无广告| 亚洲一区二区三区精品视频| 99精品视频免费在线观看| 欧美日韩国产不卡在线看| 亚洲另类春色国产| 一本色道88久久加勒比精品| 欧美精品导航| 亚洲一区二区不卡免费| 亚洲无毛电影| 国内揄拍国内精品久久| 蜜臀99久久精品久久久久久软件| 女女同性女同一区二区三区91| 最新成人av网站| 日韩一级免费观看| 国产精品视频一区二区三区| 久久国产乱子精品免费女| 亚洲自拍偷拍网址| 国产伦精品一区二区三区四区免费|