真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

qq登陸源代碼java 登錄頁(yè)面源代碼

java編寫一個(gè)登陸和注冊(cè)信息的源代碼,最簡(jiǎn)單的就可以,不需要數(shù)據(jù)庫(kù)的那種

你這個(gè)不用數(shù)據(jù)庫(kù)真的是有點(diǎn)難搞

在新豐等地區(qū),都構(gòu)建了全面的區(qū)域性戰(zhàn)略布局,加強(qiáng)發(fā)展的系統(tǒng)性、市場(chǎng)前瞻性、產(chǎn)品創(chuàng)新能力,以專注、極致的服務(wù)理念,為客戶提供網(wǎng)站制作、成都做網(wǎng)站 網(wǎng)站設(shè)計(jì)制作按需定制設(shè)計(jì),公司網(wǎng)站建設(shè),企業(yè)網(wǎng)站建設(shè),品牌網(wǎng)站設(shè)計(jì),營(yíng)銷型網(wǎng)站建設(shè),外貿(mào)網(wǎng)站制作,新豐網(wǎng)站建設(shè)費(fèi)用合理。

我寫了個(gè)用集合存儲(chǔ)的,你看看,能否幫上你

java.util.ListString?list?=?new?ArrayListString();

list.add("qq=123");//存儲(chǔ)的時(shí)候用(用戶名=密碼)的形式

list.add("ww=456");

String?username?=?"qq";

String?password?=?"123";

for?(int?i?=?0;?i??list.size();?i++)?{

String?num?=?username?+"="+password;

if(num.equals(list.get(i))){

System.out.println("登錄成功");

break;

}

}

用java怎么實(shí)現(xiàn)QQ登錄界面?

用java做QQ登錄界面的寫法如下:

package ch10;

import java.awt.*;

import java.awt.event.*;

import javax.swing.*;

1、//定義該類繼承自JFrame,實(shí)現(xiàn)ActionListener接口

public class LoginTest extends JFrame implements ActionListener

{

2、//創(chuàng)建JPanel對(duì)象

private JPanel jp=new JPanel();

3、//創(chuàng)建3個(gè)標(biāo)并加入數(shù)組

JLabel name = new JLabel("請(qǐng)輸入用戶名");

JLabel password = new JLabel("請(qǐng)輸入密碼");

JLabel show = new JLabel("");

private JLabel[] jl={name,password,show};

4、//創(chuàng)建登陸和重置按扭并加入數(shù)組

JButton login = new JButton("登陸");

JButton reset = new JButton("重置");

private JButton[] jb={login,reset};

5、//創(chuàng)建文本框以及密碼框

private JTextField jName=new JTextField();

private JPasswordField jPassword =new JPasswordField();

public LoginTest()

{

6、//設(shè)置布局管理器為空布局,這里自己擺放按鈕、標(biāo)簽和文本框

jp.setLayout(null);

for(int i=0;i2;i++)

{

7、//設(shè)置標(biāo)簽和按扭的位置與大小

jl[i].setBounds(30,20+40*i,180,20);

jb[i].setBounds(30+110*i,100,80,20);

8、//添加標(biāo)簽和按扭到JPanel容器中

jp.add(jl[i]);

jp.add(jb[i]);

//為2個(gè)按鈕注冊(cè)動(dòng)作事件監(jiān)聽器

jb[i].addActionListener(this);

}

9、//設(shè)置文本框的位置和大小,注意滿足美觀并足夠用戶名的長(zhǎng)度

jName.setBounds(130,15,100,20);

10、//添加文本框到JPanel容器中

jp.add(jName);

11、//為文本框注冊(cè)動(dòng)作事件監(jiān)聽器

jName.addActionListener(this);

12、//設(shè)置密碼框的位置和大小,注意滿足美觀和足夠密碼的長(zhǎng)度

jPassword.setBounds(130,60,100,20);

13、//添加密碼框到JPanel容器中

jp.add(jPassword);

14、//設(shè)置密碼框中的回顯字符,這里設(shè)置美元符號(hào)

jPassword.setEchoChar('$');

15、//為密碼框注冊(cè)動(dòng)作事件監(jiān)聽器

jPassword.addActionListener(this);

16、//設(shè)置用于顯示登陸狀態(tài)的標(biāo)簽大小位置,并將其添加進(jìn)JPanel容器

jl[2].setBounds(10,180,270,20);

jp.add(jl[2]);

17、//添加JPanel容器到窗體中

this.add(jp);

18、//設(shè)置窗體的標(biāo)題、位置、大小、可見性及關(guān)閉動(dòng)作

this.setTitle("登陸窗口");

this.setBounds(200,200,270,250);

this.setVisible(true);

this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

}

19、//實(shí)現(xiàn)動(dòng)作監(jiān)聽器接口中的方法actionPerformed

public void actionPerformed(ActionEvent e)

{

20、//如果事件源為文本框

if(e.getSource()==jName)

{

21、//切換輸入焦點(diǎn)到密碼框

jPassword.requestFocus();

}

22、//如果事件源為重置按扭

else if(e.getSource()==jb[1])

{

23、//清空姓名文本框、密碼框和show標(biāo)簽中的所有信息

jl[2].setText("");

jName.setText("");

jPassword.setText("");

24、//讓輸入焦點(diǎn)回到文本框

jName.requestFocus();

}

25、//如果事件源為登陸按鈕,則判斷登錄名和密碼是否正確

else

{

26、//判斷用戶名和密碼是否匹配

if(jName.getText().equals("lixiangguo")

String.valueOf(jPassword.getPassword()).equals("19801001"))

{

27、jl[2].setText("登陸成功,歡迎您的到來!");

}

else

{

28、jl[2].setText("對(duì)不起,您的用戶名或密碼錯(cuò)誤!");

}

}

}

public static void main(String[] args)

{

29、//創(chuàng)建LoginTest窗體對(duì)象

new LoginTest();

}

}

怎么用java打開qq

java實(shí)現(xiàn)簡(jiǎn)單QQ登陸界面:

1.生成界面的java代碼

package?QQ2014;

import?javax.swing.*;

import?java.awt.*;

import?java.awt.event.*;

public?class?QQ2014?{

//創(chuàng)建登陸界面類

public?void?showLoginFrame(){

//創(chuàng)建船體對(duì)象

JFrame?loginFrame=new?JFrame();

//設(shè)置大小,位置,標(biāo)題

loginFrame.setSize(300,200);

loginFrame.setTitle("QQ2014");

loginFrame.setLocationRelativeTo(null);

//創(chuàng)建流式分布對(duì)象

FlowLayout?layout=new?FlowLayout();

loginFrame.setLayout(layout);

//創(chuàng)建賬戶名,密碼和輸入框

JLabel?user_name=new?JLabel("賬號(hào):");

JLabel?user_password=new?JLabel("密碼:");

JTextField?field_name=new?JTextField(20);

JPasswordField?field_password=new?JPasswordField(20);

//創(chuàng)建登陸,重置按鈕

JButton?button_reset=new?JButton("重置");

JButton?button_login=new?JButton("登陸");

//設(shè)置窗體可見

loginFrame.setVisible(true);

//創(chuàng)建事件監(jiān)聽對(duì)象

ActionListener?action_listener1=new?ActionListener(){

public?void?actionPerformed(ActionEvent?e){

String?name=field_name.getText();

String?password=field_password.getText();

if("zhaoxin".equals(name)"123".equals(password))

{

showIndexFrame();

loginFrame.setDefaultCloseOperation(3);

loginFrame.setVisible(false);

}

else{

System.out.println("密碼錯(cuò)誤,重新輸入!");

}

}

};

ActionListener?action_listener2=new?ActionListener(){

public?void?actionPerformed(ActionEvent?e){

field_name.setText("");

field_password.setText("");

}

};

//將文本輸入框,按鈕,事件監(jiān)聽對(duì)象添加

loginFrame.add(user_name);

loginFrame.add(field_name);

loginFrame.add(user_password);

loginFrame.add(field_password);

loginFrame.add(button_reset);

loginFrame.add(button_login);

button_reset.addActionListener(action_listener2);

button_login.addActionListener(action_listener1);

}

public?void?showIndexFrame(){

//創(chuàng)建窗體對(duì)象

JFrame?indexFrame=new?JFrame();

indexFrame.setSize(200,500);

indexFrame.setTitle("QQ好友列表");

indexFrame.setLocationRelativeTo(null);

//設(shè)置流式分布對(duì)象

FlowLayout?layout=new?FlowLayout(FlowLayout.CENTER,100,10);

indexFrame.setLayout(layout);

//創(chuàng)建好友按鈕

for(int?i=0;i10;i++)

{

JButton?button_friend=new?JButton("friend"+i);

//創(chuàng)建動(dòng)作事件監(jiān)聽對(duì)象

ActionListener?action_listener=new?ActionListener()

{

public?void?actionPerformed(ActionEvent?e)

{

showChatFrame();

indexFrame.setVisible(false);

indexFrame.setDefaultCloseOperation(3);

}

};

button_friend.addActionListener(action_listener);

indexFrame.add(button_friend);

}

//設(shè)置窗體可見

indexFrame.setVisible(true);

}

public?void?showChatFrame(){

//創(chuàng)建窗體,大小,位置,標(biāo)題

JFrame?chatFrame=new?JFrame();

chatFrame.setSize(400,400);

chatFrame.setTitle("正在聊天中...");

chatFrame.setLocationRelativeTo(null);

//創(chuàng)建聊天記錄,輸入域

JTextArea?area_input=new?JTextArea(10,30);

JTextArea?area_record=new?JTextArea(5,30);

//創(chuàng)建流式分布對(duì)象

FlowLayout?layout=new?FlowLayout(FlowLayout.CENTER,0,10);

chatFrame.setLayout(layout);

//創(chuàng)建發(fā)送,關(guān)閉按扭

JButton?button_send=new?JButton("發(fā)送");

JButton?button_close=new?JButton("關(guān)閉");

//創(chuàng)建動(dòng)作事件監(jiān)聽對(duì)象

ActionListener?action_listener1=new?ActionListener()

{

public?void?actionPerformed(ActionEvent?e){

area_record.setText(area_record.getText()+"\n"+area_input.getText());

area_input.setText("");

}

};

ActionListener?action_listener2=new?ActionListener()

{

public?void?actionPerformed(ActionEvent?e){

chatFrame.setVisible(false);

chatFrame.setDefaultCloseOperation(3);

}

};

//設(shè)置窗體可見

chatFrame.setVisible(true);

//添加按鈕,事件監(jiān)聽對(duì)象

chatFrame.add(area_record);

chatFrame.add(area_input);

chatFrame.add(button_send);

chatFrame.add(button_close);

button_send.addActionListener(action_listener1);

button_close.addActionListener(action_listener2);

}

}

復(fù)制代碼

2.java?main方法調(diào)用

package?QQ2014;

public?class?Test?{

public?static?void?main(String[]?args){

QQ2014?qq=new?QQ2014();

qq.showLoginFrame();

}

}


本文名稱:qq登陸源代碼java 登錄頁(yè)面源代碼
標(biāo)題鏈接:http://weahome.cn/article/doseoss.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部