免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1522 | 回复: 1
打印 上一主题 下一主题

[求救:socket]用JBUTTON发送信息 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2005-08-13 21:32 |只看该作者 |倒序浏览
我在用SOCKET编程
写一个SOCKETCLIENT和一个SOCKETSERVER
在CLIENT端:我想用一个Jbutton的ACTIONLISTENER取得jfrmae中Jtextarea中的内容并用一个SOCKET发送出去

大家看一下了,有多少问题
package chat.client;

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.net.*;
import java.io.*;

public class ChatClientMain extends JFrame implements ActionListener
{
        JLabel numJL;
        JTextArea contentJTA;
        JTextArea wordJTA;
        JScrollPane contentJSP;
        JScrollPane wordJSP;
        JButton sendJB;
        JButton exitJB;
        JPanel midJP;
        JPanel downJP;
        JPanel downrightJP;
        String username = ×××;
       
       
        public ChatClientMain()
        {
                numJL = new JLabel();
                contentJTA = new JTextArea(15,30);
                contentJSP = new JScrollPane(contentJTA);
                wordJTA = new JTextArea(3,25);
                wordJSP = new JScrollPane(wordJTA);
                sendJB = new JButton("Send";
                exitJB = new JButton("Exit";
                midJP = new JPanel(new FlowLayout(FlowLayout.CENTER));
                downJP = new JPanel(new FlowLayout());
                downrightJP = new JPanel(new GridLayout(2,1));
               
                Container c = getContentPane();
                c.add(numJL, BorderLayout.NORTH);
                c.add(midJP, BorderLayout.CENTER);
                c.add(downJP, BorderLayout.SOUTH);
               
                midJP.add(contentJSP);
                downJP.add(wordJSP, BorderLayout.WEST);
                downJP.add(downrightJP, BorderLayout.EAST);
               
                contentJTA.setLineWrap(true);
                contentJTA.setEditable(false);
                wordJTA.setLineWrap(true);
                               
                downrightJP.add(sendJB);
                downrightJP.add(exitJB);
               
                sendJB.addActionListener(this);
                exitJB.addActionListener(this);
               
                this.setTitle("Chatting...";
                this.setSize(380,420);
                this.setResizable(false);
                this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
               

               
        }       
       
        public void setName(String name)
        {
                username = name;
                this.numJL.setText("the chatter now is:" + username);
        }
       
        private void nullError(String errorInfo,String errorType)
        {
                JOptionPane.showMessageDialog(this,errorInfo,errorType,JOptionPane.INFORMATION_MESSAGE);
        }
       
        private void send(String str)
        {
                int port = 8505;
                try{
                        Socket s = new Socket("219.217.42.×××",port);
                        OutputStream os = s.getOutputStream();
                        OutputStreamWriter osw = new OutputStreamWriter(os);
                        PrintWriter pw = new PrintWriter(osw);
                        pw.println(str);
                        pw.flush();       
                }catch(IOException e){
                        System.out.println("XXX";                       
                }
        }
       
        public static void main(String[] args)
        {
                ChatClientMain ccm = new ChatClientMain();
                ccm.show();       
        }
       

               
        public void actionPerformed(ActionEvent e)
        {
                String myWord = wordJTA.getText();
                if(e.getSource() == sendJB)
                {
                        if(myWord.trim().equals("")
                        {
                        this.nullError("The Message Connot Be Null!","Input Error";
                        wordJTA.grabFocus();
                        }else{
                        contentJTA.append(myWord + "\n";
                        wordJTA.setText(null);
                        String mymsg = this.username + "::" +myWord + "\n";
                        this.send(mymsg);
                        }
                }
                if(e.getSource() == exitJB)
                {
                        System.exit(0);
                }
       
       
        }
}

论坛徽章:
0
2 [报告]
发表于 2005-08-13 21:39 |只看该作者

[求救:socket]用JBUTTON发送信息

我的代码要发送一个消息总是要新建一个SOCKET
我想要实现的是
这个SOCKET总是开着,默认是阻塞的
当一按下sendJB时,socket打开;
从wordJTA中取得消息并发送出去;
socket阻塞,等待再一次按下sendJB

我是新人,谢谢大家的支持
我先自己看书,没有找到这样的内容(自己的理解力太差)
问身边的同学,老师,没有人学JAVA
再上网,没有找到这样的代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP