導航:首頁 > 網站知識 > 如何建立個人通訊錄號碼查詢網站

如何建立個人通訊錄號碼查詢網站

發布時間:2022-07-02 13:59:49

A. 通訊錄怎麼查

通訊錄你可以在聯系人圖標裡面進行查看,如果你的聯系人被刪的話可以去瀏覽器中找到極速數據恢復幫你進行找回,具體的操作步驟如下:
第一步:要想還原誤刪的聯系人數據,我們可以這樣做。在瀏覽器中搜索極速數據恢復,把它安裝在手機中。
第二步:將下載好的極速數據恢復軟體打開,可以在「恢復」界面中看到有很多恢復功能,找到並點擊「聯系人恢復」。
第三步:接下來軟體就會幫助我們深度掃描手機系統,在此過程中,需要耐心等待。
第四步:接下來它就會立馬把掃描出來的數據羅列在手機上,我們只需要找出對我們有用的聯系人數據進行勾選,後點擊「恢復」就可以啦!

B. 用C#編寫個人通訊錄程序

using System;

namespace TheFirstClassApp
{
enum Sexly
{
male,
female
}

struct Date
{
public int year;
public int month;
public int day;
public int Year
{
get
{
return this.year;
}
set
{
if (value >= 1990)
this.year = value;
else
this.year = 0;
}
}
public int Month
{
get
{
return this.month;
}
set
{
if (value >= 1 && value <= 12)
this.month = value;
else
this.month = 0;
}
}
public int Day
{
get
{
return this.day;
}
set
{
switch (this.month)
{
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
{
if (day >= 1 && day <= 31)

this.day = value;
else
this.day = 0;
}
break;
case 4:
case 6:
case 9:
case 11:
{
if (day >= 1 && day <= 30)
this.day = value;
else
this.day = 0;
}
break;
case 2:
if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0)
{
if (day >= 1 && day <= 29)
this.day = value;
else
this.day = 0;
break;
}
else
{
if (day >= 1 && day <= 28)
this.day = value;
else
this.day = 0;
break;
}
default:
break;
}

}
}

public string DateString
{
get
{
return year.ToString() + "年" + month.ToString() + "月" + day.ToString() + "日";
}
}
public Date(int year, int month, int day)
{
this.year = year;
this.month = month;
this.day = day;
}

public bool IsLegalDate(int year, int month, int day)
{
if (year >= 1990 && year <= 2011)
{
if (month <= 12 && month >= 1)
{
switch (this.month)
{
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
{
if (day >= 1 && day <= 31)
this.day = day;
else
Console.WriteLine("您輸入有誤");
return false;
}
case 4:
case 6:
case 9:
case 11:
{
if (day >= 1 && day <= 30)
this.day = day;
else
Console.WriteLine("您輸入有誤");
return false;
}
case 2:
if (year % 4 == 0 && year % 100 != 0 || year % 400 == 0)
{
if (day >= 1 && day <= 29)
this.day = day;
else
Console.WriteLine("您輸入有誤");
return false;
}
else
{
if (day >= 1 && day <= 28)
this.day = day;
else
Console.WriteLine("您輸入有誤");
return false;
}
default:
return false;

}

}
else
return false;
}
else
return false;
}

}
class Person
{
private string name;
public string Name
{
get
{
return this.name;
}
set
{
this.name = value;
}
}
private Sexly sex;
public Sexly Sex
{
get
{
return sex;
}
set
{
if (Convert.ToString(value) == "male" || Convert.ToString(value) == "female")
sex = value;
}
}
private string mobile;
public string Mobile
{
get
{
return this.mobile;
}
set
{
this.mobile = value;
}
}
private string address;
public string Address
{
get
{
return this.address;
}
set
{
this.address = value;
}
}
private string id;
public string ID
{
get
{
return this.id;
}
set
{
this.id = value;
}
}
private Date birthday;
public Date Birthday
{
set
{
if (value.year >= 1990 && value.year <= 1999)
this.birthday = value;
else
{
this.birthday = value;
this.birthday.year = 1990;
}

}
}
private Date work;
public Date Work
{
get
{
return this.work;
}
set
{
this.work = value;
}
}
public int WorkYear
{
get
{
return this.CalculateWorkYear();
}
}
private int CalculateWorkYear()
{
int currentYear = DateTime.Now.Year;
int workYear = this.work.year;
return currentYear - workYear;
}
public int Age
{
get
{
return this.CalculateAgeFromBirthday();
}
}
private int CalculateAgeFromBirthday()
{
int currentYear = DateTime.Now.Year;
int birthYear = this.birthday.year;
return currentYear - birthYear + 1;
}
public Person()
{ }
public Person(string name, Sexly Sex, Date birthday, string mobile, string address, string id)
{
this.name = name;
this.sex = Sex;
this.birthday = birthday;
this.mobile = mobile;
this.address = address;
this.id = id;

}
public bool SetDate(out string errorMsg, params int[] dateDates)
{
Date birthday = new Date();
errorMsg = "";
if (dateDates.Length == 1)
{
birthday.year = dateDates[0];
birthday.month = 1;
birthday.day = 1;
if (birthday.year < DateTime.Now.Year)

return true;

else
{
errorMsg = "輸入年份有誤";
return false;
}

}
else
{
if (dateDates.Length == 2)
{
birthday.year = dateDates[0];
birthday.month = dateDates[1];
birthday.day = 1;
if (birthday.year < DateTime.Now.Year)
{
if (birthday.month <= 12 && birthday.month >= 1)

return true;
else
{
errorMsg = "輸入的月份有誤!";
return false;
}

}
else
{
errorMsg = "輸入的年份有誤!";
return false;
}
}
else
{
if (dateDates.Length == 3)
{
birthday.year = dateDates[0];
birthday.month = dateDates[1];
birthday.day = dateDates[2];
if (birthday.year < DateTime.Now.Year)
{
if (birthday.month <= 12 && birthday.month >= 1)
{
switch (birthday.month)
{
case 1:
case 3:
case 5:
case 7:
case 8:
case 10:
case 12:
if (birthday.day >= 1 && birthday.day <= 31)
return true;
else
{
errorMsg = "輸入日期有誤";
return false;
}
case 4:
case 6:
case 9:
case 11:
if (birthday.day >= 1 && birthday.day <= 30)
return true;
else
{
errorMsg = "輸入日期有誤";
return false;
}
case 2:
if (birthday.year % 4 == 0 && birthday.year % 100 != 0 || birthday.year % 400 == 0)
{
if (birthday.day >= 1 && birthday.day <= 29)
return true;
else
{
errorMsg = "輸入日期有誤";
return false;

}
}
else
{
if (birthday.day >= 1 && birthday.day <= 28)
return true;
else
{
errorMsg = "輸入日期有誤";
return false;
}
}
default:
{
errorMsg = "輸入月份有誤";
return false;
}
}
}
else
{
errorMsg = "輸入月份有誤";
return false;
}
}
else
{
errorMsg = "輸入年份有誤";
return false;
}
}
else
{
errorMsg = string.Empty;
return true;
}
}
}
}
public string Information
{
get
{
string info = "";
info += "姓名:" + this.name + "\r\n";
info += "性別:" + (this.sex == Sexly.male ? "男" : "女") + "\r\n";
info += "年齡:" + this.Age + "\r\n";
info += "出生日期:" + this.birthday.DateString + "\r\n";
info += "手機號碼:" + this.mobile + "\r\n";
info += "地址:" + this.address + "\r\n";
info += "身份證:" + this.id + "\r\n";
info += "工齡:" + this.WorkYear;
return info;
}
}
}
class ProgEntry
{
static void Main()
{

Date birthday = new Date();
Date theWork1 = new Date();
Person thePerson = new Person();
Console.WriteLine("請輸入姓名:");
thePerson.Name = Console.ReadLine();
Console.WriteLine("請輸入您的性別(男用"0"表示,女用"1"表示):");
thePerson.Sex = (Sexly)Convert.ToInt32(Console.ReadLine());

Console.WriteLine("請輸入您的出生年份:");
birthday.year = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("請輸入您的出生月份:");
birthday.month = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("請輸入您的出生日期:");
birthday.day = Convert.ToInt32(Console.ReadLine());
thePerson.Birthday = birthday;

Console.WriteLine("手機號碼");
thePerson.Mobile = Console.ReadLine();

Console.WriteLine("地址:");
thePerson.Address = Console.ReadLine();

Console.WriteLine("身份證:");
thePerson.ID = Console.ReadLine();

Console.WriteLine("請輸入您的開始工作年份:");
theWork1.year = Convert.ToInt32(Console.ReadLine());

Console.WriteLine("請輸入您的開始工作月份:");
theWork1.month = Convert.ToInt32(Console.ReadLine());

Console.WriteLine("請輸入您的開始工作日期:");
theWork1.day = Convert.ToInt32(Console.ReadLine());
thePerson.Work = theWork1;

/*Console.WriteLine("工作年:");
Work.year = int.Parse(Console.ReadLine());
Console.WriteLine("工作月:");
Work.month = int.Parse(Console.ReadLine());
Console.WriteLine("工作日:");
Work.day = int.Parse(Console.ReadLine());*/

//Console.WriteLine("您的姓名:{0},性別:{2} ,年齡:{4} ,手機:{1}\n,家庭地址:{5}",thePerson.Name,thePerson.Sex,thePerson.Age,thePerson.Mobile,thePerson.Address);

/*Date theBirthday1 = new Date(1978, 12, 31);

Person thePerson = new Person("張三", Sexly.male, theBirthday1, "188888888", "青年東路七號", "328888888888885");

Date theWork1 = new Date(2010,12,31);
thePerson.Work = theWork1;*/
string errorMsg = "";
//int[] arr = new int[3];

//Date birthday1 = new Date();
thePerson.SetDate(out errorMsg, birthday.year, birthday.month, birthday.day);
//thePerson.Birthday = birthday1;

Console.WriteLine(thePerson.Information);
Console.WriteLine(errorMsg);
Console.ReadLine();
}
}
}

C. 移動號碼在網上怎麼查通訊錄

中國移動手機用戶不能在網上查通訊錄,通訊錄只存在於自己的手機上。

移動用戶可以網上查詢的是通訊記錄,即通話詳單,查詢的方法:

  1. 打開網頁,進入中國移動網上營業廳(www.10086.com)以後點擊【登陸】.

  2. 輸入手機號碼和服務密碼,如果不知道服務密碼才可以使用動態密碼來登陸.

  3. 登陸成功以後點擊【我的移動】我的消費下點【我的詳單】.

  4. 再次輸入服務密碼就可以看查詢到每一次通話的情況,套餐及固定費清單、通話清單、上網清單、短/彩信清單、代收費業務扣費記錄等.

  5. 輸入二次授權的手機獲得的密碼.

  6. 此時可以查最近六個月的通話記錄。設定好查詢時間以後點擊【開始查詢】,並且支持將通常詳單以excle格式導出至電腦硬碟。

D. 手機號碼備份 如何網上查看號碼

移動有個
號簿管家
的業務,只要
手機
型號匹配號簿管家
軟體
,下載一個到手機上,進行
號簿
備份
,就把手機裡面的
通訊錄
備份到號簿管家網站上,登陸號簿管家網站就可以查詢到通訊錄了,網站上的通訊錄還支持excrel導出到電腦桌面上。
市場上還有很多款
備份軟體
,有對應的
網址

E. )編寫一個通訊錄管理系統。要求包括通訊錄建立、增加號碼、刪除號碼、查詢號碼(按姓名、按號碼)、修改

咨詢記錄 · 回答於2021-11-22

F. 如何查手機通訊錄

打開你的手機之後,點擊撥號鍵或者聯系人,我的截圖或者和你的手機不一樣,但是每部手機都有通訊錄和聯系人的,找到他們,這里就打開撥號鍵吧。打開看到的是最近來電,再選擇聯系人,裡面沒有自己的通訊錄。

這時點擊手機及機身下方的設置按鈕,點擊之後,跳出幾個選項,選擇設置項,打開設置。

設置界面內容比較多,不要亂設置,否則會比較麻煩,因為如果你不小心設置了某個地方,又不知在哪裡就不好辦了。要找到顯示聯系人的選項,當前界面找不到,就往下滑動,找到就點擊進去。

這時可以看到SIM卡聯系人,打開右邊的鎖,鎖又灰色變成橙色表示設置成功。然後返回你的聯系人列表,就可以看到你以前的通訊錄全部在這里了。

如果你只是想顯示一部分的人的手機號,就在設置那裡,選擇導入或者導出聯系人的選項,設置界面前面提過了,這里不再贅述。再選擇從SIM卡導入,進入你的SIM卡通訊錄。

然後通訊錄列表上可以看到你的通訊錄電話號碼,點擊右側按鈕打鉤,表示選中它,然後點擊下方的導入按鈕,就可以把你選擇的號碼導入到你的手機通訊錄中了。

最後,看一下你的聯系人,看看是不是都有顯示你的通訊錄號碼了,好了就這么簡單,找不到通訊錄的小夥伴仔細看咯。

G. 知道號碼怎麼查通訊錄

建議您可以查詢通話清單,其查詢方式如下:
【中國電信歡GO網站】
1、登陸中國電信歡GO網站,憑藉手機「客戶密碼」登陸,點擊「費用」---「通話詳單」;
2、選擇查詢月份,點擊獲取簡訊驗證碼,點擊「確認查詢」;
3、查詢結果具體到每一通電話的通話時長及通話費用。
【微信公眾號「中國電信廣東公司」查詢】
關注微信公眾號「中國電信廣東公司」(微信號:gdkf10000);進入公眾號後,點擊「我要查詢」----「查費用和積分」,在跳出的活動界面中點「查詢往月話費」,選擇需要查詢話費賬單的月份,總消費以及套餐費用、套餐外費用;點擊套餐外費用下得「明細」,即可顯示該月套餐外語音通話的總費用。
【微信公眾號「廣東電信」查詢】
1、關注微信公眾號「廣東電信」(微信號:gddxwt);進入微信公眾號後點擊「自助服務」---「賬戶查詢」---「賬單查詢」;
2、點擊左上角的圖標選擇查詢賬單的日期,點擊進入查詢該月賬單,向下滑動屏幕,可看到「套餐外費用」項目,如您上月通話超出套餐內語音,則會出現相應記錄,若無則不顯示記錄。網頁鏈接

H. 利用vb創建創建一個簡易的通訊錄。查詢姓名就出來電話號的那種。 希望大神指導

您好!
要資料庫嗎?我可以幫你做一個

I. 人名和手機號如何注冊通訊錄

通訊錄的話是不需要進行注冊,你說的應該是出村名字,名字和號碼,先點擊號碼,把號碼輸完後點擊添加至通訊錄,然後輸入聯系人的姓名就可。

閱讀全文

與如何建立個人通訊錄號碼查詢網站相關的資料

熱點內容
網路共享中心沒有網卡 瀏覽:527
電腦無法檢測到網路代理 瀏覽:1377
筆記本電腦一天會用多少流量 瀏覽:598
蘋果電腦整機轉移新機 瀏覽:1381
突然無法連接工作網路 瀏覽:1081
聯通網路怎麼設置才好 瀏覽:1230
小區網路電腦怎麼連接路由器 瀏覽:1058
p1108列印機網路共享 瀏覽:1215
怎麼調節台式電腦護眼 瀏覽:721
深圳天虹蘋果電腦 瀏覽:957
網路總是異常斷開 瀏覽:618
中級配置台式電腦 瀏覽:1017
中國網路安全的戰士 瀏覽:638
同志網站在哪裡 瀏覽:1422
版觀看完整完結免費手機在線 瀏覽:1464
怎樣切換默認數據網路設置 瀏覽:1114
肯德基無線網無法訪問網路 瀏覽:1290
光纖貓怎麼連接不上網路 瀏覽:1500
神武3手游網路連接 瀏覽:969
局網列印機網路共享 瀏覽:1005