资讯

精准传达 • 有效沟通

从品牌网站建设到网络营销策划,从策略到执行的一站式服务

javaqq按钮代码 java的按钮

Java程序 我现在要对一个Button进行右击然后可以出现一个类似于按钮 像QQ一样 对好友右击出现一堆东西拜

import java.util.*; import javax.swing.*; import java.awt.*; import java.awt.event.MouseEvent; import java.awt.event.MouseListener; public class TestDemo extends JFrame{ JButton button = null; JPopupMenu jpMenu = null; JMenu m1 = null; JMenu m2 = null; JMenuItem x = null; int width = Toolkit.getDefaultToolkit().getScreenSize().width; int height =Toolkit.getDefaultToolkit().getScreenSize().height; public TestDemo() { this.setLayout(new FlowLayout()); this.setTitle("测试"); this.setSize(300,300); this.setLocation((width-300)/2,(height-300)/2); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); Container con = this.getContentPane(); button = new JButton("测试按钮"); jpMenu = new JPopupMenu(); m1 = new JMenu("1"); m2 = new JMenu("2"); jpMenu.add(m1); jpMenu.add(m2); button.addMouseListener(new MouseListener() { @Override public void mouseClicked(MouseEvent e) { // TODO Auto-generated method stub } @Override public void mouseEntered(MouseEvent arg0) { // TODO Auto-generated method stub } @Override public void mouseExited(MouseEvent arg0) { // TODO Auto-generated method stub } @Override public void mousePressed(MouseEvent arg0) { // TODO Auto-generated method stub } @Override public void mouseReleased(MouseEvent e) { // TODO Auto-generated method stub if(e.isMetaDown()) { if(e.isPopupTrigger()) { jpMenu.show(e.getComponent(),e.getX(),e.getY()); } } } }); button.setSize(50,50); con.add(button); this.setVisible(true); } public static void main(String[] args) { // TODO Auto-generated method stub new TestDemo(); } }

10多年专注建站、设计、互联网产品按需求定制开发服务,业务涵盖品牌网站制作商城网站定制开发、微信小程序定制开发、软件系统开发、重庆APP开发等。凭借多年丰富的经验,我们会仔细了解每个客户的需求而做出多方面的分析、设计、整合,为客户设计出具风格及创意性的商业解决方案,成都创新互联公司更提供一系列网站制作和网站推广的服务,以推动各中小企业全面信息数字化,并利用创新技术帮助各行业提升企业形象和运营效率。

怎么用java打开qq

java实现简单QQ登陆界面:

1.生成界面的java代码

package QQ2014;

import javax.swing.*;

import java.awt.*;

import java.awt.event.*;

public class QQ2014 {

//创建登陆界面类

public void showLoginFrame(){

//创建船体对象

JFrame loginFrame=new JFrame();

//设置大小,位置,标题

loginFrame.setSize(300,200);

loginFrame.setTitle("QQ2014");

loginFrame.setLocationRelativeTo(null);

//创建流式分布对象

FlowLayout layout=new FlowLayout();

loginFrame.setLayout(layout);

//创建账户名,密码和输入框

JLabel user_name=new JLabel("账号:");

JLabel user_password=new JLabel("密码:");

JTextField field_name=new JTextField(20);

JPasswordField field_password=new JPasswordField(20);

//创建登陆,重置按钮

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

JButton button_login=new JButton("登陆");

//设置窗体可见

loginFrame.setVisible(true);

//创建事件监听对象

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("密码错误,重新输入!");

}

}

};

ActionListener action_listener2=new ActionListener(){

public void actionPerformed(ActionEvent e){

field_name.setText("");

field_password.setText("");

}

};

//将文本输入框,按钮,事件监听对象添加

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(){

//创建窗体对象

JFrame indexFrame=new JFrame();

indexFrame.setSize(200,500);

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

indexFrame.setLocationRelativeTo(null);

//设置流式分布对象

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

indexFrame.setLayout(layout);

//创建好友按钮

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

{

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

//创建动作事件监听对象

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);

}

//设置窗体可见

indexFrame.setVisible(true);

}

public void showChatFrame(){

//创建窗体,大小,位置,标题

JFrame chatFrame=new JFrame();

chatFrame.setSize(400,400);

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

chatFrame.setLocationRelativeTo(null);

//创建聊天记录,输入域

JTextArea area_input=new JTextArea(10,30);

JTextArea area_record=new JTextArea(5,30);

//创建流式分布对象

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

chatFrame.setLayout(layout);

//创建发送,关闭按扭

JButton button_send=new JButton("发送");

JButton button_close=new JButton("关闭");

//创建动作事件监听对象

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);

}

};

//设置窗体可见

chatFrame.setVisible(true);

//添加按钮,事件监听对象

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);

}

}

复制代码

2.java main方法调用

package QQ2014;

public class Test {

public static void main(String[] args){

QQ2014 qq=new QQ2014();

qq.showLoginFrame();

}

}

在java中qq界面中怎么按enter键发送消息

方法一:

import java.awt.* ;

import javax.swing.* ;

import java.awt.event.*;

public class ButtonTest extends JFrame implements KeyListener{

private JButton b1 = new JButton("Click") ;

public ButtonTest(){

this.getContentPane().add(b1) ;

b1.addKeyListener(this) ;

this.setDefaultCloseOperation(this.EXIT_ON_CLOSE);

this.pack() ;

}

public void keyReleased(KeyEvent ke){

}

public void keyPressed(KeyEvent ke){

if(ke.getKeyChar() == ke.VK_ENTER){

System.out.println ("ok................") ;

}

}

public void keyTyped(KeyEvent ke){

}

public static void main(String[] args){

new ButtonTest().show() ;

}

}

方法二:

import java.awt.* ;

import javax.swing.* ;

import java.awt.event.*;

public class ButtonTest extends JFrame{

private JButton b1 = new JButton("Click") ;

public ButtonTest(){

this.getContentPane().add(b1) ;

b1.addKeyListener(new KeyAdapter(){

public void keyPressed(KeyEvent ke){

if(ke.getKeyChar() == ke.VK_ENTER){

System.out.println ("ok..............") ;

}

}

}

) ;

this.setDefaultCloseOperation(this.EXIT_ON_CLOSE) ;

this.pack() ;

}

public static void main(String[] args){

new ButtonTest().show() ;

}

}

登录界面,用Java做,类似于QQ的,要求有用户名,密码,以及登录按钮,当登陆成功时,提示登陆成功!

主要代码

/**

* 登录面板

*/

import java.awt.AWTException;

import java.awt.BorderLayout;

import java.awt.Color;

import java.awt.Frame;

import java.awt.GridBagConstraints;

import java.awt.GridBagLayout;

import java.awt.SystemTray;

import java.awt.TrayIcon;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.awt.event.MouseAdapter;

import java.awt.event.MouseEvent;

import java.awt.event.WindowAdapter;

import java.awt.event.WindowEvent;

import java.io.File;

import java.io.IOException;

import java.sql.SQLException;

import javax.imageio.ImageIO;

import javax.swing.ImageIcon;

import javax.swing.JButton;

import javax.swing.JFrame;

import javax.swing.JLabel;

import javax.swing.JOptionPane;

import javax.swing.JPanel;

import javax.swing.JPasswordField;

import javax.swing.JTextField;

public class Login{

private TrayIcon trayIcon;//托盘图标

private SystemTray systemTray;//系统托盘

public Login() {

final JFrame myJFrame = new JFrame(" 登录");

myJFrame.setBounds(520, 200, 300, 250);

myJFrame.setLayout(new BorderLayout());

myJFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

/**

* 实现系统托盘

*/

systemTray = SystemTray.getSystemTray();//获得系统托盘的实例

try {

trayIcon = new TrayIcon(ImageIO.read(new File("o.gif")));

systemTray.add(trayIcon);//设置托盘的图标,0.gif与该类文件同一目录

}

catch (IOException e1) {e1.printStackTrace();}

catch (AWTException e2) {e2.printStackTrace();}

myJFrame.addWindowListener(

new WindowAdapter(){

public void windowIconified(WindowEvent e){

myJFrame.dispose();//窗口最小化时dispose该窗口

}

});

trayIcon.addMouseListener(

new MouseAdapter(){

public void mouseClicked(MouseEvent e){

if(e.getClickCount() == 2)//双击托盘窗口再现

{

myJFrame.setExtendedState(Frame.NORMAL);

myJFrame.setVisible(true);

}

if(e.getClickCount() == 1)

trayIcon.displayMessage("李", "", TrayIcon.MessageType.INFO);

}

public void mouseEntered(MouseEvent e){

trayIcon.displayMessage("a", "b", TrayIcon.MessageType.INFO);

}

});

//myJFrame.setIconImage(Toolkit.getDefaultToolkit().createImage(JFrame.class.getResource("images/topLogin.jpg")));

//显示图像

JLabel topLoginJLabel = new JLabel(new ImageIcon("images/topLogin.jpg"));

JPanel topJPanel = new JPanel();

topJPanel.add(topLoginJLabel);

topJPanel.setBackground(Color.black);

myJFrame.add(topJPanel, BorderLayout.NORTH);

final JPanel myJPanel = new JPanel();

myJFrame.setResizable(false);

JLabel myJLabel1 = new JLabel("用户名:");

JLabel myJLabel2 = new JLabel("密码:");

JLabel myJLabel3 = new JLabel("验证码:");

final JTextField myJTextField1 = new JTextField();

final JPasswordField myJPasswordField1 = new JPasswordField();

final JTextField myJTextField3 = new JTextField();

//按钮

JButton myJButton1 = new JButton("确认");

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

JButton myJButton3 = new JButton("注册");

//背景色

myJPanel.setBackground(Color.getHSBColor(212, 223, 23));

//设置面板布局

GridBagLayout gridbag = new GridBagLayout();

GridBagConstraints constraints = new GridBagConstraints();

myJPanel.setLayout(gridbag);

MyLayout myLay = new MyLayout();

myLay.buildConstraints(constraints, 0, 0, 1, 1, 20, 35);

constraints.fill = GridBagConstraints.NONE;

constraints.anchor = GridBagConstraints.CENTER;

gridbag.setConstraints(myJLabel1, constraints);

myLay.buildConstraints(constraints, 1, 0, 1, 1, 80, 0);

constraints.fill = GridBagConstraints.HORIZONTAL;

gridbag.setConstraints(myJTextField1, constraints);

myLay.buildConstraints(constraints, 0, 1, 1, 1, 0, 25);

constraints.fill = GridBagConstraints.NONE;

constraints.anchor = GridBagConstraints.CENTER;

gridbag.setConstraints(myJLabel2, constraints);

myLay.buildConstraints(constraints, 1, 1, 1, 1, 0, 0);

constraints.fill = GridBagConstraints.HORIZONTAL;

gridbag.setConstraints(myJPasswordField1, constraints);

myLay.buildConstraints(constraints, 0, 2, 1, 1, 33, 25);

constraints.fill = GridBagConstraints.NONE;

constraints.anchor = GridBagConstraints.CENTER;

gridbag.setConstraints(myJLabel3, constraints);

myLay.buildConstraints(constraints, 1, 2, 1, 1, 33, 0);

constraints.fill = GridBagConstraints.HORIZONTAL;

gridbag.setConstraints(myJTextField3, constraints);

myLay.buildConstraints(constraints, 2, 2, 1, 1, 34, 0);

constraints.fill = GridBagConstraints.HORIZONTAL;

@SuppressWarnings("unused")

JudgeCode myJudgeCode = new JudgeCode();

gridbag.setConstraints(JudgeCode.judgeCodeLabel, constraints);//验证码

myLay.buildConstraints(constraints, 0, 3, 1, 1, 33, 15);

constraints.fill = GridBagConstraints.NONE;

constraints.anchor = GridBagConstraints.CENTER;

gridbag.setConstraints(myJButton1, constraints);

myLay.buildConstraints(constraints, 1, 3, 1, 1, 33, 0);

constraints.fill = GridBagConstraints.CENTER;

gridbag.setConstraints(myJButton2, constraints);

myLay.buildConstraints(constraints, 2, 3, 1, 1, 34, 0);

constraints.fill = GridBagConstraints.NONE;

gridbag.setConstraints(myJButton3, constraints);

myJPanel.add(myJLabel1);

myJPanel.add(myJTextField1);

myJPanel.add(myJLabel2);

myJPanel.add(myJPasswordField1);

myJPanel.add(myJLabel3);

myJPanel.add(myJTextField3);

myJPanel.add(JudgeCode.judgeCodeLabel);

myJPanel.add(myJButton1);

myJPanel.add(myJButton2);

myJPanel.add(myJButton3);

myJFrame.add(myJPanel, BorderLayout.CENTER);

//确认单击事件

myJButton1.addActionListener(new ActionListener() {

@Override

public void actionPerformed(ActionEvent e) {

// TODO Auto-generated method stub

String username = new String(myJTextField1.getText()); //用户名

String mypassword = new String(myJPasswordField1.getPassword()); //获取密码

/**

* 数据库操作

*/

DataConn dataconn = new DataConn();

String sql = "select * from user_information where name = '"+username+"'";

dataconn.executeQuery(sql);

try {

if(username == null || username == "" || mypassword == null || mypassword == "" || myJTextField3.getText() == null || myJTextField3.getText() == ""){

JOptionPane.showMessageDialog(null, "用户名、密码、验证码不能为空!请重新输入!");

}

else if(!dataconn.rs.next()){

JOptionPane.showMessageDialog(null, "你输入的用户名不存在!请重新输入!");

myJTextField1.setText("");

myJPasswordField1.setText("");

}

else if(!dataconn.rs.getString("password").equals(mypassword))

{

JOptionPane.showMessageDialog(null, "你输入的密码错误!请重新输入!");

myJPasswordField1.setText("");

}

else if(!myJTextField3.getText().equals(JudgeCode.code)){

JOptionPane.showMessageDialog(null, "你输入的验证码错误!请重新输入!");

}

else

{

JOptionPane.showMessageDialog(null, "登录成功!");

@SuppressWarnings("unused")

Index myIndex = new Index();//进入程序主界面

myJFrame.setVisible(false);

}

} catch (SQLException e1) {

// TODO Auto-generated catch block

e1.printStackTrace();

}

dataconn.closeStmt();

dataconn.closeConn();

}

});

//重置的单击事件

myJButton2.addActionListener(new ActionListener() {

@Override

public void actionPerformed(ActionEvent e) {

// TODO Auto-generated method stub

myJTextField1.setText("");

myJPasswordField1.setText("");

}

});

//注册

myJButton3.addActionListener(new ActionListener() {

@Override

public void actionPerformed(ActionEvent e) {

// TODO Auto-generated method stub

@SuppressWarnings("unused")

Register myRegister = new Register();

}

});

myJFrame.setVisible(true);//需要放在后面,不然得刷新才能显示页面

}

public static void main(String []args){

@SuppressWarnings("unused")

Login myLogin = new Login();

}

}

JAVA 用代码实现登入QQ空间操作

辽主临轩的分享

分享

java程序模拟qq登录界面的代码

java程序如何实现登录、记住密码、自动登录等功能!

package dyno.swing.beans.qq;

import javax.swing.*;

import javax.swing.event.MouseInputListener;

import org.jvnet.substance.skin.SubstanceOfficeBlue2007LookAndFeel;

/*import org.jvnet.substance.skin.SubstanceModerateLookAndFeel;

import org.jvnet.substance.skin.SubstanceOfficeBlue2007LookAndFeel;*/

import java.awt.*;

import java.awt.event.ActionEvent;

import java.awt.event.ActionListener;

import java.awt.event.MouseEvent;

import java.io.IOException;

import java.io.PrintWriter;

import java.net.Socket;

import java.net.UnknownHostException;

import java.sql.ResultSet;

import java.sql.SQLException;

import java.util.Scanner;

public class QQLogin extends JFrame implements MouseInputListener,ActionListener{

JLabel guanggao,beijing,wenzi,shezhi,zhanghaowb,qq1,dengluzhuangtai;

// JTextField zhanghao;

JPopupMenu haoma;

JComboBox zhanghao;

JPasswordField mima;

JCheckBox jizhumima,zidongdenglu;

JButton denglu,chashamuma;

JProgressBar jpb;

SimThread activity;

Timer activityMonitor;

String name,qq;

Socket s;

public QQLogin()

{

try {

UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");

} catch (ClassNotFoundException e1) {

// TODO 自动生成 catch 块

e1.printStackTrace();

} catch (InstantiationException e1) {

// TODO 自动生成 catch 块

e1.printStackTrace();

} catch (IllegalAccessException e1) {

// TODO 自动生成 catch 块

e1.printStackTrace();

} catch (UnsupportedLookAndFeelException e1) {

// TODO 自动生成 catch 块

e1.printStackTrace();

}

chashamuma = new JButton("查杀木马");

chashamuma.setBounds(240, 155,85, 20);

this.add(chashamuma);

jpb = new JProgressBar();

jpb.setStringPainted(true);

jpb.setBounds(100, 240, 200, 15);

this.add(jpb);

chashamuma.addActionListener(new ActionListener(){

public void actionPerformed(ActionEvent e){

jpb.setMaximum(1000);//设置进度栏的最大值

activity=new SimThread(1000);

activity.start();//启动线程

activityMonitor.start();//启动定时器

chashamuma.setEnabled(false);//禁止按钮

}

});

activityMonitor=new Timer(100,new ActionListener(){//每0.5秒执行一次

public void actionPerformed(ActionEvent e){//以下动作将在事件调度线程中运行,十分安全

int current=activity.getCurrent();//得到线程的当前进度

jpb.setValue(current);//更新进度栏的值

if(current==activity.getTarget()){//如果到达目标值

activityMonitor.stop();//终止定时器

chashamuma.setEnabled(true);//激活按钮

}

}

});

dengluzhuangtai = new JLabel(new ImageIcon("zaixianzhuangtai.jpg"));

dengluzhuangtai.setBounds(75, 145, 35, 30);

this.add(dengluzhuangtai);

dengluzhuangtai.addMouseListener(this);

denglu = new JButton("登录");

denglu.setBounds(140, 155, 80, 20);

this.add(denglu);

this.setAlwaysOnTop(true);

zidongdenglu = new JCheckBox("自动登录");

zidongdenglu.setBounds(200, 190, 100, 30);

this.add(zidongdenglu);

jizhumima = new JCheckBox("记住密码");

jizhumima.setBounds(100, 190, 100, 30);

// jizhumima.setBackground(new Color(228, 244, 255));

this.add(jizhumima);

haoma = new JPopupMenu();

/* zhanghao = new JTextField(20);

zhanghao.setBounds(120, 78, 135, 20);

zhanghao.setBorder(BorderFactory.createMatteBorder(1, 1, 1, 1, Color.WHITE));

zhanghao.setFont(new Font("宋体",Font.PLAIN,13));

this.add(zhanghao);*/

// zhanghaowb = new JLabel(new ImageIcon("2.png"));

// zhanghaowb.setBounds(90, 73, 194, 31);

// jiantou = new JLabel(new ImageIcon("baijiantou.png"));

// jiantou.setBounds(256, 78, 23, 21);

// jiantou.addMouseListener(this);

// this.add(jiantou);

// this.add(zhanghaowb);

chashamuma.addActionListener(this);

mima = new JPasswordField();

mima.setEchoChar('*');

mima.setFont(new Font("宋体",Font.PLAIN,13));

mima.setBounds(100, 113, 150, 20);

this.add(mima);

zhanghao = new JComboBox();

zhanghao.setEditable(true);

zhanghao.setBounds(100, 78, 150, 20);

zhanghao.setFont(new Font("宋体",Font.PLAIN,13));

this.add(zhanghao);

guanggao = new JLabel(new ImageIcon("guanggao.gif"));

guanggao.setBounds(0, 0, 334, 64);

beijing = new JLabel(new ImageIcon("beijing.jpg"));

beijing.setBounds(0, 64, 334, 154);

wenzi = new JLabel(new ImageIcon("wenzi.jpg"));

wenzi.setBounds(30, 75, 50, 100);

denglu.addActionListener(this);

// zhanghaowb.addMouseListener(this);

// zhanghao.addMouseListener(this);

this.add(wenzi);

this.add(beijing);

this.setLayout(null);

this.add(guanggao);

this.setVisible(true);

this.setDefaultCloseOperation(3);

this.setSize(340, 250);

this.setLocationRelativeTo(null);

}

public static void main(String[] args) {

/*JFrame.setDefaultLookAndFeelDecorated(true);

try {

UIManager.setLookAndFeel(new SubstanceOfficeBlue2007LookAndFeel()) ;

UIManager.setLookAndFeel("org.jvnet.substance.skin.SubstanceOfficeBlue2007LookAndFeel");

} catch (Exception e) {

System.out.println("Substance Raven Graphite failed to initialize");

}

SwingUtilities.invokeLater(new Runnable() {

public void run() {

QQLogin w = new QQLogin();

w.setVisible(true);

}

});*/

new QQLogin();

}

public void mouseClicked(MouseEvent e) {

// TODO 自动生成方法存根

}

public void mouseEntered(MouseEvent e) {

if(e.getSource() == dengluzhuangtai)

{

dengluzhuangtai.setIcon(new ImageIcon("zaixianzhuangtaidian.jpg"));

}

}

public void mouseExited(MouseEvent e) {

if(e.getSource() == dengluzhuangtai)

{

dengluzhuangtai.setIcon(new ImageIcon("zaixianzhuangtai.jpg"));

}

}

public void mousePressed(MouseEvent e) {

// TODO 自动生成方法存根

}

public void mouseReleased(MouseEvent e) {

// TODO 自动生成方法存根

}

public void mouseDragged(MouseEvent e) {

// TODO 自动生成方法存根

}

public void mouseMoved(MouseEvent e) {

// TODO 自动生成方法存根

}

public class liaotianchuangkou

{

}

class SimThread extends Thread{//线程类

private int current;//进度栏的当前值

private int target;//进度栏的最大值

public SimThread(int t){

current=0;

target=t;

}

public int getTarget(){

return target;

}

public int getCurrent(){

return current;

}

public void run(){//线程体

try{

while (currenttarget !interrupted()){//如果进度栏的当前值小于目标值并且线程没有被中断

sleep(10);

current++;

if(current == 700)

{

sleep(3000);

}

else if(current == 730)

{

sleep(1000);

}

}

}catch (InterruptedException e){}

}

}

public void actionPerformed(ActionEvent e) {

if(e.getSource() == chashamuma)

{

this.setBounds(300, 300, 340, 300);

}

else if(e.getSource() == denglu)

{

String zh = (String) zhanghao.getSelectedItem();

System.out.println(zhanghao.getSelectedItem());

// System.out.println(zhanghao.getItemAt(0));

char [] str = mima.getPassword();

String mima = String.valueOf(str);;

System.out.println(mima);

// Sql login = new Sql();

// if(login.login(zh,mima))

// {

try {

s = new Socket("127.0.0.1",8888);

System.out.println(s);

PrintWriter pw;

Scanner sc;

pw = new PrintWriter(s.getOutputStream(),true);

sc = new Scanner(s.getInputStream());

String str2 = "login#289872400198724#"+zh+"#289872400198724#"+mima;

System.out.println(str2);

pw.println(str2);

String str3 = sc.nextLine();

String yanzheng[] = str3.split("#");

System.out.println(str3);

if(yanzheng[0].equals("true"))

{

System.out.println("登陆成功!");

name = yanzheng[1];

qq = yanzheng[2];

// this.setVisible(false);

// Thread.sleep(5000);

System.out.println("woao"+name);

System.out.println("woai"+qq);

Logined logined = new Logined(name,qq);

this.setVisible(false);

}

else

{

JOptionPane.showMessageDialog(this, "用户名或密码错误!", "用户名或密码错误!", 0);

}

} catch (UnknownHostException e2) {

// TODO 自动生成 catch 块

e2.printStackTrace();

} catch (IOException e2) {

// TODO 自动生成 catch 块

e2.printStackTrace();

}

/*try {

login.rs = login.stat.executeQuery("select * from qquser where username='"+zh+"' and password = '"+mima+"'");

boolean flag = login.rs.next();

if(flag == true)

{

name = login.rs.getString("name");

qq = login.rs.getString("username");

}

else

{

}*/

// } catch (SQLException e1) {

// TODO 自动生成 catch 块

// e1.printStackTrace();

// }

}

else

{

JOptionPane.showMessageDialog(this, "用户名或密码错误", "输入错误", 0);

}

// this.setVisible(false);

//new Logined();

}

}


新闻名称:javaqq按钮代码 java的按钮
本文URL:http://cdkjz.cn/article/hhhhsd.html
多年建站经验

多一份参考,总有益处

联系快上网,免费获得专属《策划方案》及报价

咨询相关问题或预约面谈,可以通过以下方式与我们联系

业务热线:400-028-6601 / 大客户专线   成都:13518219792   座机:028-86922220