亚洲综合原千岁中文字幕_国产精品99久久久久久久vr_无码人妻aⅴ一区二区三区浪潮_成人h动漫精品一区二区三

主頁(yè) > 知識(shí)庫(kù) > asp.net 讀取配置文件方法

asp.net 讀取配置文件方法

熱門(mén)標(biāo)簽:地圖標(biāo)注多個(gè)行程 銅川小型外呼系統(tǒng)運(yùn)營(yíng)商 陜西人工外呼系統(tǒng)哪家好 廈門(mén)商鋪地圖標(biāo)注 云南外呼電銷(xiāo)機(jī)器人系統(tǒng) 上海楊浦怎么申請(qǐng)申請(qǐng)400電話 海外地圖標(biāo)注門(mén)市標(biāo) 山西防封卡電銷(xiāo)卡套餐 浙江外呼系統(tǒng)怎么安裝
方法1:
復(fù)制代碼 代碼如下:

System.Collections.Specialized.NameValueCollection nvc = (System.Collections.Specialized.NameValueCollection)
System.Configuration.ConfigurationManager.GetSection(sectionName);

string keyValue = nvc.GetValues(keyName)[0].ToString();
方法2:
復(fù)制代碼 代碼如下:
System.Web.Configuration.WebConfigurationManager.AppSettings[keyName].ToString();

參考下面的文章

在C#中如何讀取配置文件
1. 配置文件概述:
應(yīng) 用程序配置文件是標(biāo)準(zhǔn)的 XML 文件,XML 標(biāo)記和屬性是區(qū)分大小寫(xiě)的。它是可以按需要更改的,開(kāi)發(fā)人員可以使用配置文件來(lái)更改設(shè)置,而不必重編譯應(yīng)用程序。配置文件的根節(jié)點(diǎn)是 configuration。我們經(jīng)常訪問(wèn)的是appSettings,它是由.Net預(yù)定義配置節(jié)。我們經(jīng)常使用的配置文件的架構(gòu)是象下面的形式。先大 概有個(gè)印象,通過(guò)后面的實(shí)例會(huì)有一個(gè)比較清楚的認(rèn)識(shí)。下面的“配置節(jié)”可以理解為進(jìn)行配置一個(gè)XML的節(jié)點(diǎn)。
常見(jiàn)配置文件模式:
復(fù)制代碼 代碼如下:

configuration>
configSections> //配置節(jié)聲明區(qū)域,包含配置節(jié)和命名空間聲明
section> //配置節(jié)聲明
  sectionGroup> //定義配置節(jié)組
   section> //配置節(jié)組中的配置節(jié)聲明
appSettings> //預(yù)定義配置節(jié)
Custom element for configuration section> //配置節(jié)設(shè)置區(qū)域

2. 只有appSettings節(jié)的配置文件及訪問(wèn)方法
下面是一個(gè)最常見(jiàn)的應(yīng)用程序配置文件的例子,只有appSettings節(jié)。
復(fù)制代碼 代碼如下:

?xml version="1.0" encoding="utf-8"?>
configuration>
appSettings>
add key="connectionstring" value="User ID=sa;Data Source=.;Password=;Initial Catalog=test;Provider=SQLOLEDB.1;" />
add key="TemplatePATH" value="Template" />
/appSettings>
/configuration>

下面來(lái)看看這樣的配置文件如何方法。
string _connectionString=ConfigurationSettings.AppSettings["connectionstring"];
使用ConfigurationSettings類的靜態(tài)屬性AppSettings就可以直接方法配置文件中的配置信息。這個(gè)屬性的類型是NameValueCollection。
3. 自定義配置文件
3.1 自定義配置節(jié)
一個(gè)用戶自定義的配置節(jié),在配置文件中分為兩部分:一是在configSections>/ configSections>配置節(jié)中聲明配置節(jié)(上面配置文件模式中的“section>”),另外是在 configSections>/ configSections >之后設(shè)置配置節(jié)(上面配置文件模式中的“Custom element for configuration section>”),有點(diǎn)類似一個(gè)變量先聲明,后使用一樣。聲明一個(gè)配置文件的語(yǔ)句如下:
section name=" " type=" "/>
section>:聲明新配置節(jié),即可創(chuàng)建新配置節(jié)。
name:自定義配置節(jié)的名稱。
type:自定義配置節(jié)的類型,主要包括System.Configuration.SingleTagSectionHandler、 System.Configuration.DictionarySectionHandler、 System.Configuration.NameValueSectionHandler。
不同的type不但設(shè)置配置節(jié)的方式不一樣,最后訪問(wèn)配置文件的操作上也有差異。下面我們就舉一個(gè)配置文件的例子,讓它包含這三個(gè)不同的type。
復(fù)制代碼 代碼如下:

?xml version="1.0" encoding="utf-8" ?>
configuration>
configSections>
section name="Test1" type="System.Configuration.SingleTagSectionHandler"/>
section name="Test2" type="System.Configuration.DictionarySectionHandler"/>
section name="Test3" type="System.Configuration.NameValueSectionHandler" />
/configSections>
Test1 setting1="Hello" setting2="World"/>
Test2>
add key="Hello" value="World" />
/Test2>
Test3>
add key="Hello" value="World" />
/Test3>
/configuration>

我們對(duì)上面的自定義配置節(jié)進(jìn)行說(shuō)明。在聲明部分使用section name="Test1" type="System.Configuration.SingleTagSectionHandler"/>聲明了一個(gè)配置節(jié)它的名字叫 Test1,類型為SingleTagSectionHandler。在設(shè)置配置節(jié)部分使用 Test1 setting1="Hello" setting2="World"/>設(shè)置了一個(gè)配置節(jié),它的第一個(gè)設(shè)置的值是Hello,第二個(gè)值是World,當(dāng)然還可以有更多。其它的兩個(gè)配 置節(jié)和這個(gè)類似。
下面我們看在程序中如何訪問(wèn)這些自定義的配置節(jié)。我們用過(guò)ConfigurationSettings類的靜態(tài)方法GetConfig來(lái)獲取自定義配置節(jié)的信息。
public static object GetConfig(string sectionName);
下面是訪問(wèn)這三個(gè)配置節(jié)的代碼:
復(fù)制代碼 代碼如下:

//訪問(wèn)配置節(jié)Test1
IDictionary IDTest1 = (IDictionary)ConfigurationSettings.GetConfig("Test1");
string str = (string)IDTest1["setting1"] +" "+(string)IDTest1["setting2"];
MessageBox.Show(str); //輸出Hello World
//訪問(wèn)配置節(jié)Test1的方法2
string[] values1=new string[IDTest1.Count];
IDTest1.Values.CopyTo(values1,0);
MessageBox.Show(values1[0]+" "+values1[1]); //輸出Hello World
//訪問(wèn)配置節(jié)Test2
IDictionary IDTest2 = (IDictionary)ConfigurationSettings.GetConfig("Test2");
string[] keys=new string[IDTest2.Keys.Count];
string[] values=new string[IDTest2.Keys.Count];
IDTest2.Keys.CopyTo(keys,0);
IDTest2.Values.CopyTo(values,0);
MessageBox.Show(keys[0]+" "+values[0]);
//訪問(wèn)配置節(jié)Test3
NameValueCollection nc=(NameValueCollection)ConfigurationSettings.GetConfig("Test3");
MessageBox.Show(nc.AllKeys[0].ToString()+" "+nc["Hello"]); //輸出Hello World

通過(guò)上面的代碼我們可以看出,不同的type通過(guò)GetConfig返回的類型不同,具體獲得配置內(nèi)容的方式也不一樣。 配置節(jié)處理程序
返回類型
復(fù)制代碼 代碼如下:

SingleTagSectionHandler
Systems.Collections.IDictionary
DictionarySectionHandler
Systems.Collections.IDictionary
NameValueSectionHandler
Systems.Collections.Specialized.NameValueCollection

3.2 自定義配置節(jié)組
配置節(jié)組是使用sectionGroup>元素,將類似的配置節(jié)分到同一個(gè)組中。配置節(jié)組聲明 部分將創(chuàng)建配置節(jié)的包含元素,在configSections>元素中聲明配置節(jié)組,并將屬于該組的節(jié)置于 sectionGroup>元素中。下面是一個(gè)包含配置節(jié)組的配置文件的例子:
復(fù)制代碼 代碼如下:

?xml version="1.0" encoding="utf-8" ?>
configuration>
configSections>
sectionGroup name="TestGroup">
section name="Test" type="System.Configuration.NameValueSectionHandler"/>
/sectionGroup>
/configSections>
TestGroup>
Test>
add key="Hello" value="World"/>
/Test>
/TestGroup>
/configuration>

下面是訪問(wèn)這個(gè)配置節(jié)組的代碼:
NameValueCollection nc=(NameValueCollection)ConfigurationSettings.GetConfig("TestGroup/Test");
MessageBox.Show(nc.AllKeys[0].ToString()+" "+nc["Hello"]); //輸出Hello World
C# 解析配置文件內(nèi)容 System.Configuration
1. 創(chuàng)建配置節(jié)類
必須創(chuàng)建繼承自ConfigurationSection的對(duì)象才能進(jìn)行配置數(shù)據(jù)讀寫(xiě)操作,ConfigurationSection提供了索引器用來(lái)獲取和設(shè)置配置數(shù)據(jù),需要注意的是擁有ConfigurationProperty特性的屬性才會(huì)被存儲(chǔ),并且名稱要保持大小寫(xiě)完全一致,如下面的代碼中,所有的"id"必須保持一樣。
復(fù)制代碼 代碼如下:

class ConfigSectionData : ConfigurationSection
{
[ConfigurationProperty("id")]
public int Id
{
get { return (int)this["id"]; }
set { this["id"] = value; }
}
[ConfigurationProperty("time")]
public DateTime Time
{
get { return (DateTime)this["time"]; }
set { this["time"] = value; }
}
}

2. 創(chuàng)建配置文件操作對(duì)象
復(fù)制代碼 代碼如下:

Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
ConfigSectionData data = new ConfigSectionData();
data.Id = 1000;
data.Time = DateTime.Now;
config.Sections.Add("add", data);
config.Save(ConfigurationSaveMode.Minimal);

上面的例子是操作 app.config,在根節(jié)點(diǎn)(configuration)下寫(xiě)入名稱為"add"的配置數(shù)據(jù)。
復(fù)制代碼 代碼如下:

?xml version="1.0" encoding="utf-8" ?>
configuration>
configSections>
section name="add" type="ConsoleApplication1.ConfigSectionData, ... />
/configSections>
add id="1000" time="02/18/2006 21:51:06" />
/configuration>

需要注意的 VS2005 在IDE模式下會(huì)將信息寫(xiě)入 *.vshost.exe.config,并且在程序關(guān)閉時(shí)覆寫(xiě)該文件,因此您可能看不到您寫(xiě)入的配置數(shù)據(jù),只要在資源管理其中執(zhí)行 *.exe 文件,您就可以在 *.exe.config 文件中看到結(jié)果了。
如果我們需要操作非缺省配置文件,可以使用ExeConfigurationFileMap對(duì)象。
復(fù)制代碼 代碼如下:

ExeConfigurationFileMap file = new ExeConfigurationFileMap();
file.ExeConfigFilename = "test.config";
Configuration config = ConfigurationManager.OpenMappedExeConfiguration(file, ConfigurationUserLevel.None);
ConfigSectionData data = new ConfigSectionData();
data.Id = 1000;
data.Time = DateTime.Now;
config.Sections.Add("add", data);
config.Save(ConfigurationSaveMode.Minimal);

如果我們不希望在根節(jié)點(diǎn)下寫(xiě)入配置數(shù)據(jù),可以使用ConfigurationSectionGroup對(duì)象。
復(fù)制代碼 代碼如下:

ExeConfigurationFileMap file = new ExeConfigurationFileMap();
file.ExeConfigFilename = "test.config";
Configuration config = ConfigurationManager.OpenMappedExeConfiguration(file, ConfigurationUserLevel.None);
ConfigSectionData data = new ConfigSectionData();
data.Id = 1000;
data.Time = DateTime.Now;
config.SectionGroups.Add("group1", new ConfigurationSectionGroup());
config.SectionGroups["group1"].Sections.Add("add", data);
config.Save(ConfigurationSaveMode.Minimal);

下面就是生成的配置文件。
復(fù)制代碼 代碼如下:

?xml version="1.0" encoding="utf-8"?>
configuration>
configSections>
sectionGroup name="group1" type="System.Configuration.ConfigurationSectionGroup, ... >
section name="add" type="ConsoleApplication1.ConfigSectionData, ... />
/sectionGroup>
/configSections>
group1>
add id="1000" time="02/18/2006 22:01:02" />
/group1>
/configuration>

3. 讀取配置文件
復(fù)制代碼 代碼如下:

ExeConfigurationFileMap file = new ExeConfigurationFileMap();
file.ExeConfigFilename = "test.config";
Configuration config = ConfigurationManager.OpenMappedExeConfiguration(file, ConfigurationUserLevel.None);
ConfigSectionData data = config.SectionGroups["group1"].Sections["add"] as ConfigSectionData;
//ConfigSectionData data = config.Sections["add"] as ConfigSectionData; // 從根節(jié)讀取
if (data != null)
{
Console.WriteLine(data.Id);
Console.WriteLine(data.Time);
}

4. 寫(xiě)配置文件
在寫(xiě)入 ConfigurationSectionGroup 和 ConfigurationSection 前要判斷同名配置是否已經(jīng)存在,否則會(huì)寫(xiě)入失敗。
另外如果配置文件被其他Configuration對(duì)象修改,則保存會(huì)失敗,并拋出異常。建議采用Singleton模式。
復(fù)制代碼 代碼如下:

ExeConfigurationFileMap file = new ExeConfigurationFileMap();
file.ExeConfigFilename = "test.config";
Configuration config = ConfigurationManager.OpenMappedExeConfiguration(file, ConfigurationUserLevel.None);
ConfigSectionData data = new ConfigSectionData();
data.Id = 2000;
data.Time = DateTime.Now;
ConfigurationSectionGroup group1 = config.SectionGroups["group1"];
if (group1 == null)
config.SectionGroups.Add("group1", new ConfigurationSectionGroup());
ConfigurationSection data = group1.Sections["add"] as config;
if (add == null)
config.SectionGroups["group1"].Sections.Add("add", data);
else
{
group1.Sections.Remove("add");
group1.Sections.Add("add", data);
// 或者直接修改原配置對(duì)象,前提是類型轉(zhuǎn)換要成功。
//ConfigSectionData configData = add as ConfigSectionData;
//configData.Id = data.Id;
//configData.Time = data.Time;
}
config.Save(ConfigurationSaveMode.Minimal);

5. 刪除配置節(jié)
復(fù)制代碼 代碼如下:

刪除ConfigurationSectionGroup
config.SectionGroups.Remove("group1");
//config.SectionGroups.Clear();
config.Save(ConfigurationSaveMode.Minimal);
刪除ConfigurationSection
config.Sections.Remove("add1");
//config.Sections.Clear();
if (config.SectionGroups["group1"] != null)
{
config.SectionGroups["group1"].Sections.Remove("add2");
//config.SectionGroups["group1"].Sections.Clear();
}
config.Save(ConfigurationSaveMode.Minimal);

6. 其他
可以使用 ConfigurationManager.OpenMachineConfiguration() 來(lái)操作 Machine.config 文件。
或者使用 System.Web.Configuration 名字空間中的 WebConfigurationManager 類來(lái)操作 ASP.net 配置文件。
ConfigurationManager還提供了AppSettings、ConnectionStrings、GetSection()等便捷操作。
7. 使用自定義類
可以使用自定義類,不過(guò)需要定義一個(gè)轉(zhuǎn)換器。
復(fù)制代碼 代碼如下:

using System;
using System.Collections;
using System.Collections.Generic;
using System.Configuration;
using System.Globalization;
using System.ComponentModel;
// 要寫(xiě)入配置文件的自定義類
class CustomData
{
public CustomData(string s)
{
this.s = s;
}
private string s;
public string S
{
get { return s; }
set { s = value; }
}
}
// 自定義的轉(zhuǎn)換器(演示代碼省略了類型判斷)
class CustomConvert : ConfigurationConverterBase
{
public override bool CanConvertFrom(ITypeDescriptorContext ctx, Type type)
{
return (type == typeof(string));
}
public override object ConvertTo(ITypeDescriptorContext ctx, CultureInfo ci, object value, Type type)
{
return (value as CustomData).S;
}
public override object ConvertFrom(ITypeDescriptorContext ctx, CultureInfo ci, object data)
{
return new CustomData((string)data);;
}
}
class ConfigSectionData : ConfigurationSection
{
[ConfigurationProperty("id")]
public int Id
{
get { return (int)this["id"]; }
set { this["id"] = value; }
}
[ConfigurationProperty("time")]
public DateTime Time
{
get { return (DateTime)this["time"]; }
set { this["time"] = value; }
}
[ConfigurationProperty("custom")]
[TypeConverter(typeof(CustomConvert))] // 指定轉(zhuǎn)換器
public CustomData Custom
{
get { return (CustomData)this["custom"]; }
set { this["custom"] = value; }
}
}
public class Program
{
static void Main(string[] args)
{
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
ConfigSectionData data = new ConfigSectionData();
data.Id = 1000;
data.Time = DateTime.Now;
data.Custom = new CustomData("abcdefg...");
config.Sections.Add("add", data);
config.Save(ConfigurationSaveMode.Minimal);
// 讀取測(cè)試
ConfigSectionData configData = (ConfigSectionData)config.Sections["add"];
Console.WriteLine(configData.Custom.S);
}
}

保存后的配置文件
復(fù)制代碼 代碼如下:

?xml version="1.0" encoding="utf-8" ?>
configuration>
configSections>
section name="add" type="..." />
/configSections>
add id="1000" time="04/17/2006 22:06:58" custom="abcdefg..." />
/configuration>

更詳細(xì)的信息可以看 MSDN 中關(guān)于 System.Configuration.ConfigurationConverterBase 的說(shuō)明。
您可能感興趣的文章:
  • ASP.Net動(dòng)態(tài)讀取Excel文件最簡(jiǎn)方法
  • 如何在ASP.NET Core類庫(kù)項(xiàng)目中讀取配置文件詳解
  • asp.net讀取模版并寫(xiě)入文本文件
  • ASP.NET對(duì)txt文件相關(guān)操作(讀取、寫(xiě)入、保存)
  • ASP.NET中上傳并讀取Excel文件數(shù)據(jù)示例
  • asp.net讀取excel文件的三種方法示例
  • asp.net讀取磁盤(pán)文件、刪除實(shí)例代碼
  • ASP.NET(C#)讀取Excel的文件內(nèi)容
  • C#/.NET讀取或修改文件的創(chuàng)建時(shí)間及修改時(shí)間詳解

標(biāo)簽:常州 西雙版納 信陽(yáng) 孝感 萊蕪 朔州 自貢 許昌

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《asp.net 讀取配置文件方法》,本文關(guān)鍵詞  asp.net,讀取,配置文件,方法,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《asp.net 讀取配置文件方法》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于asp.net 讀取配置文件方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    免费毛片播放| 人人干人人草| 日韩专区第一页| 国产一区二区高清视频| 韩国毛片| 日韩欧美一及在线播放| 亚洲不卡一区二区三区在线| 国产高清在线精品一区a| 韩国毛片免费| 精品国产亚一区二区三区| 美国一区二区三区| 日韩男人天堂| 亚洲精品影院久久久久久| 久草免费在线视频| 国产精品免费久久| 日本伦理黄色大片在线观看网站| 国产一区二区精品在线观看| 四虎影视精品永久免费网站| 日韩免费在线观看视频| 久久久久久久久综合影视网| 欧美夜夜骑 青草视频在线观看完整版 久久精品99无色码中文字幕 欧美日韩一区二区在线观看视频 欧美中文字幕在线视频 www.99精品 香蕉视频久久 | 日韩中文字幕一区| 亚洲精品永久一区| 日本在线www| 国产亚洲精品成人a在线| 日本在线不卡免费视频一区| 91麻豆精品国产综合久久久| 九九国产| 美女免费精品高清毛片在线视| 黄视频网站在线看| a级毛片免费全部播放| 999精品影视在线观看| 久久99中文字幕久久| 九九精品在线播放| 成人免费观看网欧美片| 97视频免费在线| 精品久久久久久综合网| 四虎久久精品国产| 99色吧| 天天做人人爱夜夜爽2020| 精品视频在线看 | 精品视频在线观看一区二区| 日韩中文字幕在线亚洲一区| 日韩专区亚洲综合久久| 日本免费乱人伦在线观看 | 国产精品免费久久| 日本在线www| 日本在线不卡视频| 精品毛片视频| 国产91精品一区二区| 国产国语在线播放视频| 999精品影视在线观看| 韩国毛片免费大片| 一级女性全黄久久生活片| 国产国语对白一级毛片| 在线观看成人网 | 精品久久久久久中文| 午夜在线影院| 国产不卡在线播放| 四虎久久影院| 91麻豆精品国产综合久久久| 欧美激情伊人| 久久国产一久久高清| 四虎影视久久久免费| 国产a视频| 国产视频一区二区在线观看| 国产精品自拍在线观看| 欧美18性精品| 久久久久久久男人的天堂| 国产精品12| 国产网站免费视频| 欧美夜夜骑 青草视频在线观看完整版 久久精品99无色码中文字幕 欧美日韩一区二区在线观看视频 欧美中文字幕在线视频 www.99精品 香蕉视频久久 | 午夜欧美福利| 日韩欧美一及在线播放| 国产成人女人在线视频观看| 欧美1卡一卡二卡三新区| 国产一级生活片| 韩国三级香港三级日本三级| 999精品影视在线观看| 国产91精品一区| 九九精品在线播放| 国产伦精品一区三区视频| 国产不卡在线观看| 国产成人啪精品视频免费软件| 九九九国产| 国产美女在线观看| 国产极品精频在线观看| 91麻豆爱豆果冻天美星空| 国产福利免费视频| 黄视频网站免费看| 日本特黄特色aaa大片免费| 青青久久精品国产免费看| 成人高清视频免费观看| 麻豆系列 在线视频| 国产网站免费观看| 国产美女在线一区二区三区| 精品在线免费播放| 久久成人性色生活片| 深夜做爰性大片中文| 日日爽天天| 日本久久久久久久 97久久精品一区二区三区 狠狠色噜噜狠狠狠狠97 日日干综合 五月天婷婷在线观看高清 九色福利视频 | 日韩一级精品视频在线观看| 欧美另类videosbestsex视频| 国产成人精品一区二区视频| 午夜久久网| 久久成人亚洲| 日本久久久久久久 97久久精品一区二区三区 狠狠色噜噜狠狠狠狠97 日日干综合 五月天婷婷在线观看高清 九色福利视频 | 欧美激情一区二区三区视频高清| 国产伦精品一区二区三区无广告| 精品久久久久久中文字幕2017| 日韩字幕在线| 国产一级生活片| 99久久精品国产免费| 青草国产在线观看| 99色视频在线观看| 999精品在线| 91麻豆国产| 四虎影视精品永久免费网站| 天天做日日爱| 日本免费看视频| 精品国产香蕉在线播出| 成人免费高清视频| 一a一级片| 日韩在线观看免费完整版视频| 国产精品自拍亚洲| 在线观看导航| 黄色福利片| 欧美一级视| 999精品在线| 韩国三级香港三级日本三级| 亚洲 激情| 久久国产精品自由自在| 日韩av东京社区男人的天堂| 麻豆网站在线免费观看| 九九九网站| 97视频免费在线观看| 国产伦精品一区二区三区无广告| 国产成人精品综合| 国产视频久久久久| 日本在线不卡视频| 日韩avdvd| 午夜精品国产自在现线拍| 日韩中文字幕在线观看视频| 99久久精品国产片| 天天色成人网| 四虎影视久久久免费| 久久久久久久免费视频| 一级女性大黄生活片免费| 久久福利影视| 国产高清视频免费观看| 一本伊大人香蕉高清在线观看| 99久久精品国产免费| 久久精品大片| 午夜家庭影院| 黄视频网站在线观看| 成人免费福利片在线观看| 黄视频网站免费| 午夜欧美成人久久久久久| 国产一区二区精品久久91| 午夜在线影院| 亚欧成人毛片一区二区三区四区| 天天做日日爱夜夜爽| 人人干人人草| 天堂网中文字幕| 韩国毛片免费大片| 99色吧| 久久久久久久久综合影视网| 四虎影视久久久| 成人免费观看网欧美片| 一级女性大黄生活片免费| 黄视频网站在线观看| 免费国产在线观看| 天天做日日爱夜夜爽| 99久久网站| 成人免费观看男女羞羞视频| 一级片免费在线观看视频| 香蕉视频三级| 九九久久国产精品大片| 欧美大片aaaa一级毛片| 精品毛片视频| 麻豆网站在线看| 久久国产精品只做精品| 久久99青青久久99久久| 四虎影视库| 国产亚洲免费观看| 日本特黄特色aa大片免费| a级毛片免费观看网站| 国产视频一区二区三区四区| 99热热久久| 日本免费乱人伦在线观看 | 精品视频一区二区| 国产精品123| 久久国产一久久高清| 午夜欧美成人久久久久久| 国产欧美精品| 国产成人精品影视| 精品毛片视频| 一本高清在线| 一本高清在线| 可以免费看污视频的网站|