- 浏览: 14291 次
- 性别:
- 来自: 北京
-
最新评论
-
surprising:
mina 实现的聊天软件 -
kanful:
有可能修改的也不完善。我修改后是正常了。
Ibatis死锁 -
laopoainiben:
修改代码后,会出现cpu100%,并且一直不下降
Ibatis死锁
工具类时间格式化
;
package chat.kanful;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
/**
*
时期时间工具类
*
* @author kanful
*
*/
public class DateTimeUtils {
private static Date date = new Date();
public final static SimpleDateFormat timeFormat = new SimpleDateFormat(
"HH:mm:ss");
public final static SimpleDateFormat dateFormat = new SimpleDateFormat(
"yyyy-MM-dd");
public final static SimpleDateFormat dateTimeFormat = new SimpleDateFormat(
"yyyy-MM-dd HH:mm:ss");
/**
*
*
* @return
明日是周几
星期一到七
(1-7)
*/
public static int getNextDayOfweek() {
Calendar calendar = Calendar.getInstance();
calendar.setTime(new java.util.Date(date.getTime() + 24 * 60 * 60
* 1000));
if (calendar.get(Calendar.DAY_OF_WEEK) == 1)
return 7;
else
return calendar.get(Calendar.DAY_OF_WEEK) - 1;
}
/**
*
*
* @return
明天的日期
* @throws ParseException
*/
public static String getNextDay() {
String operationtime = dateFormat.format(new java.util.Date(date
.getTime()
+ 24 * 60 * 60 * 1000));
return operationtime;
}
/**
*
*
* @return
今天的日期
*/
public static String getToday() {
String operationtime = dateFormat.format(new java.util.Date(date
.getTime()));
return operationtime;
}
/**
*
* @return
现在的时间
默认的系统格式
*/
public static Date getNowTime() {
return new Date();
}
/**
*
* @param date
* @return "yyyy-MM-dd"
格式的字符串
*/
public static String validateDate(Date date) {
return date == null ? null : DateTimeUtils.dateFormat.format(date);
}
/**
*
* @param date
* @return "HH:mm"
格式的字符串
*/
public static String validateTime(Date date) {
return date == null ? null : DateTimeUtils.timeFormat.format(date);
}
/**
*
* @param date
* @return "yyyy-MM-dd HH:mm:ss"
格式的字符串
*/
public static String validateDateTime(Date date) {
return date == null ? null : DateTimeUtils.dateTimeFormat.format(date);
}
/**
*
* @param dateStr
* String
格式为
"yyyy-MM-dd"
* @return
日期
*/
public static Date validateDate(String dateStr) {
try {
return dateStr == null || dateStr.equals("") ? null
: DateTimeUtils.dateFormat.parse(dateStr);
} catch (ParseException e) {
e.printStackTrace();
return null;
}
}
/**
*
* @param dateStr
* String
格式为
"HH:mm"
* @return
日期
*/
public static Date validateTime(String dateStr) {
try {
return dateStr == null || dateStr.equals("") ? null
: DateTimeUtils.timeFormat.parse(dateStr);
} catch (ParseException e) {
e.printStackTrace();
return null;
}
}
/**
*
* @param dateStr
* String
格式为
"yyyy-MM-dd HH:mm:ss"
* @return
日期
*/
public static Date validateDateTime(String dateStr) {
try {
return dateStr == null || dateStr.equals("") ? null
: DateTimeUtils.dateTimeFormat.parse(dateStr);
} catch (ParseException e) {
e.printStackTrace();
return null;
}
}
}
消息类
:
package chat.kanful;
import java.io.Serializable;
import java.util.List;
/**
*
* @author kanful
*
*/
public class Message implements Serializable {
/**
*
*/
private static final long serialVersionUID = 8330482387552302479L;
private boolean login = false;
private boolean logout = false;
private String date;
private String content;
private String LoginName;
private List<String> reciverDeps;
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public String getDate() {
return date;
}
public void setDate(String date) {
this.date = date;
}
public boolean isLogin() {
return login;
}
public void setLogin(boolean login) {
this.login = login;
}
public String getLoginName() {
return LoginName;
}
public void setLoginName(String loginName) {
LoginName = loginName;
}
public boolean isLogout() {
return logout;
}
public void setLogout(boolean logout) {
this.logout = logout;
}
public List<String> getReciverDeps() {
return reciverDeps;
}
public void setReciverDeps(List<String> reciverDeps) {
this.reciverDeps = reciverDeps;
}
}
服务端界面代码
:
/*
* ServerFrame.java
*
* Created on __DATE__, __TIME__
*/
package chat.kanful.server;
import java.io.IOException;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
/**
*
* @author __USER__
*/
public class ServerFrame extends javax.swing.JFrame {
/**
*
*/
private static final long serialVersionUID = -4765894664906136341L;
/** Creates new form ServerFrame */
public ServerFrame() {
initComponents();
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
// GEN-BEGIN:initComponents
// <editor-fold defaultstate="collapsed" desc=" Generated Code ">
private void initComponents() {
startButton = new javax.swing.JButton();
stopButton = new javax.swing.JButton();
jLabel1 = new javax.swing.JLabel();
portField = new javax.swing.JTextField();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
startButton.setText("\u542f\u52a8");
startButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
startHandler(evt);
}
});
stopButton.setText("\u505c\u6b62");
stopButton.setEnabled(false);
stopButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
stopHandler(evt);
}
});
jLabel1.setText("\u7aef\u53e3\uff1a");
portField.setText("6016");
org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(
getContentPane());
getContentPane().setLayout(layout);
layout
.setHorizontalGroup(layout
.createParallelGroup(
org.jdesktop.layout.GroupLayout.LEADING)
.add(
layout
.createSequentialGroup()
.addContainerGap(57, Short.MAX_VALUE)
.add(
layout
.createParallelGroup(
org.jdesktop.layout.GroupLayout.LEADING)
.add(
layout
.createSequentialGroup()
.add(
startButton)
.addPreferredGap(
org.jdesktop.layout.LayoutStyle.RELATED)
.add(
stopButton)
.addContainerGap())
.add(
org.jdesktop.layout.GroupLayout.TRAILING,
layout
.createSequentialGroup()
.add(
jLabel1)
.addPreferredGap(
org.jdesktop.layout.LayoutStyle.RELATED)
.add(
portField,
org.jdesktop.layout.GroupLayout.PREFERRED_SIZE,
89,
org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
.add(
75,
75,
75)))));
layout.setVerticalGroup(layout.createParallelGroup(
org.jdesktop.layout.GroupLayout.LEADING).add(
org.jdesktop.layout.GroupLayout.TRAILING,
layout.createSequentialGroup().addContainerGap(
org.jdesktop.layout.GroupLayout.DEFAULT_SIZE,
Short.MAX_VALUE).add(
layout.createParallelGroup(
org.jdesktop.layout.GroupLayout.BASELINE).add(
portField,
org.jdesktop.layout.GroupLayout.PREFERRED_SIZE,
org.jdesktop.layout.GroupLayout.DEFAULT_SIZE,
org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
.add(jLabel1)).add(20, 20, 20).add(
layout.createParallelGroup(
org.jdesktop.layout.GroupLayout.BASELINE).add(
startButton).add(stopButton))
.add(135, 135, 135)));
pack();
}// </editor-fold>//GEN-END:initComponents
JFrame serverFrame = this;
// GEN-FIRST:event_stopHandler
private void stopHandler(java.awt.event.ActionEvent evt) {
server.stop();
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
startButton.setEnabled(true);
stopButton.setEnabled(false);
}
});
}// GEN-LAST:event_stopHandler
// GEN-FIRST:event_startHandler
private void startHandler(java.awt.event.ActionEvent evt) {
try {
server.start(Integer.parseInt(portField.getText()));
} catch (NumberFormatException e) {
JOptionPane.showMessageDialog(serverFrame, "
请填写正确的端口
", "
警告
",
JOptionPane.WARNING_MESSAGE);
e.printStackTrace();
} catch (IOException e) {
JOptionPane.showMessageDialog(serverFrame, "
连接失败
", "
失败
",
JOptionPane.INFORMATION_MESSAGE);
e.printStackTrace();
}
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
startButton.setEnabled(false);
stopButton.setEnabled(true);
}
});
}// GEN-LAST:event_startHandler
// GEN-BEGIN:variables
// Variables declaration - do not modify
private javax.swing.JLabel jLabel1;
private javax.swing.JTextField portField;
private javax.swing.JButton startButton;
private javax.swing.JButton stopButton;
Server server = new Server();
/**
* @param args
* the command line arguments
*/
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
ServerFrame serverFrame = new ServerFrame();
serverFrame.setLocation(400, 400);
serverFrame.setVisible(true);
}
});
}
// End of variables declaration//GEN-END:variables
}
Server
类
:
package chat.kanful.server;
import java.io.IOException;
import java.net.InetSocketAddress;
import org.apache.mina.common.DefaultIoFilterChainBuilder;
import org.apache.mina.common.IoAcceptor;
import org.apache.mina.common.IoAcceptorConfig;
import org.apache.mina.common.ThreadModel;
import org.apache.mina.filter.codec.ProtocolCodecFilter;
import org.apache.mina.filter.codec.serialization.ObjectSerializationCodecFactory;
import org.apache.mina.transport.socket.nio.SocketAcceptor;
import org.apache.mina.transport.socket.nio.SocketAcceptorConfig;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* @author kanful
*
*/
public class Server {
IoAcceptor acceptor;
IoAcceptorConfig config;
DefaultIoFilterChainBuilder chain;
private static Logger log = LoggerFactory.getLogger(Server.class);
public Server() {
}
public void start(int port) throws IOException {
acceptor = new SocketAcceptor();
config = new SocketAcceptorConfig();
chain = config.getFilterChain();
config.setThreadModel(ThreadModel.MANUAL);
// chain.addLast("logger", new LoggingFilter());
// chain.addLast("codec", new ProtocolCodecFilter(
// new TextLineCodecFactory(Charset.forName("UTF-8"))));
config.getFilterChain().addLast("codec",
new ProtocolCodecFilter(new ObjectSerializationCodecFactory()));
acceptor.bind(new InetSocketAddress(port), new ServerSessionHandler(),
config);
log.info("Listening on port " + port);
}
public void stop() {
try {
acceptor.unbindAll();
log.info("stop listening... ");
super.finalize();
} catch (Throwable e) {
e.printStackTrace();
}
}
}
ServerHandler
类
:
package chat.kanful.server;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.concurrent.ConcurrentHashMap;
import org.apache.mina.common.IdleStatus;
import org.apache.mina.common.IoHandlerAdapter;
import org.apache.mina.common.IoSession;
import org.apache.mina.common.TransportType;
import org.apache.mina.transport.socket.nio.SocketSessionConfig;
import chat.kanful.Message;
import chat.kanful.client.IOSessionException;
/**
* @author kanful
*
*/
public class ServerSessionHandler extends IoHandlerAdapter {
private ConcurrentHashMap<IoSession, String> customers = new ConcurrentHashMap<IoSession, String>();
public ServerSessionHandler() {
super();
}
public void sessionCreated(IoSession session) {
if (session.getTransportType() == TransportType.SOCKET)
((SocketSessionConfig) session.getConfig())
.setReceiveBufferSize(2048);
session.setIdleTime(IdleStatus.BOTH_IDLE, 10);
List<String> list = new ArrayList<String>();
list.addAll(customers.values());
session.write(list);
}
public void exceptionCaught(IoSession session, Throwable cause) {
cause.printStackTrace();
customers.remove(session);
session.close();
}
public void messageReceived(IoSession session, Object msg) throws Exception {
if (!(msg instanceof Message)) {
throw new IOSessionException("
格式错误
");
}
Message message = (Message) msg;
if (message.isLogin()) {
String loginName = message.getLoginName();
if (customers.containsValue(loginName)) {
Message logoutMessage = new Message();
logoutMessage.setLogout(true);
session.write(logoutMessage);
System.out.println("
接收一个新连接
有相同的用户名了。:
");
} else {
System.out.println("
接收一个新连
:" + loginName);
createNewCustomer(session, loginName);
}
} else if (message.isLogout()) {
customers.remove(session);
session.close();
} else {
Date Datetime = DateTimeUtils.getNowTime();
message.setDate(DateTimeUtils.validateTime(Datetime));
message.setLoginName(customers.get(session));
notifyDeparments(message);
}
}
public void createNewCustomer(IoSession session, String department) {
customers.put(session, department);
List<String> list = new ArrayList<String>();
list.addAll(customers.values());
for (IoSession assesion : customers.keySet())
assesion.write(list);
}
public void notifyDeparments(Message message) {
List<String> depsList = message.getReciverDeps();
for (IoSession session : customers.keySet()) {
if (depsList.contains(customers.get(session))) {
session.write(message);
}
}
}
public void notifyAll(String message) {
for (IoSession session : this.customers.keySet()) {
session.write(message);
}
}
@Override
public void sessionClosed(IoSession session) throws Exception {
session = null;
}
public int getNumberOfUsers() {
return customers.size();
}
}
客户端界面代码
:
/*
* LogFrame.java
*
* Created on __DATE__, __TIME__
*/
package chat.kanful.client;
import chat.kanful.Message;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.util.ArrayList;
import java.util.List;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import chat.kanful.DateTimeUtils;
/**
*
* @author __USER__
*/
public class LogFrame extends javax.swing.JFrame {
/**
*
*/
private static final long serialVersionUID = -1357955505013256203L;
// GEN-BEGIN:variables
// Variables declaration - do not modify
private javax.swing.JButton cancelButton;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JScrollPane jScrollPane2;
private javax.swing.JButton loginButton;
private javax.swing.JTextArea msgArea;
private javax.swing.JTextField msgField;
private javax.swing.JTextField nameField;
private javax.swing.JList nameList;
private javax.swing.JButton sendButton;
// End of variables declaration//GEN-END:variables
private CustomerHandler handler;
private String name;
final int port = 6016;
private javax.swing.JFrame chatFrame;
/** Creates new form LogFrame */
public LogFrame() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
initComponents();
handler = new CustomerHandler();
final JFrame jframe = this;
handler.setMessageListener(new MessageListener() {
public void onMessage(Message message) {
if (message.isLogout()) {
chatFrame.setVisible(false);
setVisible(true);
handler.disConnect();
JOptionPane.showMessageDialog(jframe, "
有相同的用户名,请改换一个
",
"
失败
", JOptionPane.ERROR_MESSAGE);
}
msgArea.setText(msgArea.getText() + message.getDate() + " "
+ message.getLoginName() + ":" + message.getContent()
+ "\n");
}
public void onNames(List list) {
System.out.println("
接受新的用户列表
");
list.remove(getName());
nameList.setListData(list.toArray());
}
});
}
// GEN-BEGIN:initComponents
// <editor-fold defaultstate="collapsed" desc=" Generated Code ">
private void initComponents() {
final javax.swing.JTextField urlField;
final LogFrame logFrame = this;
chatFrame = new javax.swing.JFrame();
jScrollPane1 = new javax.swing.JScrollPane();
msgArea = new javax.swing.JTextArea();
jScrollPane2 = new javax.swing.JScrollPane();
nameList = new javax.swing.JList();
msgField = new javax.swing.JTextField();
sendButton = new javax.swing.JButton();
jLabel1 = new javax.swing.JLabel();
nameField = new javax.swing.JTextField();
loginButton = new javax.swing.JButton();
cancelButton = new javax.swing.JButton();
jLabel2 = new javax.swing.JLabel();
urlField = new javax.swing.JTextField();
chatFrame.setSize(600, 500);
chatFrame.setVisible(false);
chatFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
msgArea.setColumns(20);
msgArea.setRows(5);
jScrollPane1.setViewportView(msgArea);
jScrollPane2.setViewportView(nameList);
sendButton.setText("
发送
");
nameField.setText("
用户名
");
sendButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
Object[] sendNames = nameList.getSelectedValues();
List<String> names = new ArrayList<String>();
String sender = "";
for (Object str : sendNames) {
names.add((String) str);
}
if (names.isEmpty()) {
int leng = nameList.getLastVisibleIndex();
int[] indices = new int[leng + 1];
for (int i = 0; i <= leng; i++) {
indices[i] = i;
}
nameList.setSelectedIndices(indices);
sendNames = nameList.getSelectedValues();
for (Object str : sendNames) {
names.add((String) str);
}
sender = "
所有人
";
} else if (nameList.getMaxSelectionIndex() == names.size() - 1) {
sender = "
所有人
";
} else {
for (int i = 0; i < names.size(); i++) {
sender += name;
if (i != names.size() - 1) {
sender += ",";
}
}
}
Message msg = new Message();
msg.setReciverDeps(names);
msg.setContent(msgField.getText());
msgField.setText("");
try {
handler.sendMessage(msg);
} catch (IOSessionException e1) {
e1.printStackTrace();
}
StringBuffer msgBuffer = new StringBuffer();
msgBuffer.append(msgArea.getText());
msgBuffer.append(DateTimeUtils.validateTime(DateTimeUtils
.getNowTime()));
msgBuffer.append(" ");
msgBuffer.append("
我对
");
msgBuffer.append(sender);
msgBuffer.append("
说
:");
msgBuffer.append(msg.getContent());
msgBuffer.append("\n");
msgArea.setText(msgBuffer.toString());
}
});
org.jdesktop.layout.GroupLayout jInternalFrame1Layout = new org.jdesktop.layout.GroupLayout(
chatFrame.getContentPane());
chatFrame.getContentPane().setLayout(jInternalFrame1Layout);
jInternalFrame1Layout
.setHorizontalGroup(jInternalFrame1Layout
.createParallelGroup(
org.jdesktop.layout.GroupLayout.LEADING)
.add(
jInternalFrame1Layout
.createSequentialGroup()
.add(
jScrollPane2,
org.jdesktop.layout.GroupLayout.PREFERRED_SIZE,
58,
org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(
org.jdesktop.layout.LayoutStyle.RELATED)
.add(
jInternalFrame1Layout
.createParallelGroup(
org.jdesktop.layout.GroupLayout.LEADING,
false)
.add(
org.jdesktop.layout.GroupLayout.TRAILING,
jInternalFrame1Layout
.createSequentialGroup()
.add(
msgField)
.addPreferredGap(
org.jdesktop.layout.LayoutStyle.RELATED)
.add(
sendButton))
.add(
jScrollPane1,
org.jdesktop.layout.GroupLayout.PREFERRED_SIZE,
532,
org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
.add(33, 33, 33)));
jInternalFrame1Layout
.setVerticalGroup(jInternalFrame1Layout
.createParallelGroup(
org.jdesktop.layout.GroupLayout.LEADING)
.add(
jInternalFrame1Layout
.createSequentialGroup()
.addContainerGap()
.add(
jInternalFrame1Layout
.createParallelGroup(
org.jdesktop.layout.GroupLayout.LEADING)
.add(
jInternalFrame1Layout
.createSequentialGroup()
.add(
jScrollPane2,
org.jdesktop.layout.GroupLayout.DEFAULT_SIZE,
332,
Short.MAX_VALUE)
.addContainerGap())
.add(
org.jdesktop.layout.GroupLayout.TRAILING,
jInternalFrame1Layout
.createSequentialGroup()
.add(
jScrollPane1,
org.jdesktop.layout.GroupLayout.DEFAULT_SIZE,
294,
Short.MAX_VALUE)
.addPreferredGap(
org.jdesktop.layout.LayoutStyle.RELATED)
.add(
jInternalFrame1Layout
.createParallelGroup(
org.jdesktop.layout.GroupLayout.BASELINE)
.add(
sendButton)
.add(
msgField,
org.jdesktop.layout.GroupLayout.PREFERRED_SIZE,
org.jdesktop.layout.GroupLayout.DEFAULT_SIZE,
org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
.add(
19,
19,
19)))));
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
jLabel1.setText("\u767b\u5f55\u540d:");
loginButton.setText("\u767b\u5f55");
loginButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
setName(nameField.getText());
handler.setLoginName(nameField.getText());
try {
handler.connect(urlField.getText(), port);
} catch (IOSessionException e) {
JOptionPane.showMessageDialog(logFrame, "
连接失败,请重试
", "
失败
",
JOptionPane.INFORMATION_MESSAGE);
e.printStackTrace();
}
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
msgArea.setText("
连接成功
!" + "\n");
logFrame.setVisible(false);
chatFrame.setSize(600, 300);
chatFrame.setLocation(400, 400);
chatFrame.setVisible(true);
}
});
}
});
cancelButton.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
System.exit(0);
}
});
cancelButton.setText("\u53d6\u6d88");
jLabel2.setText("\u4e3b\u673a\u5730\u5740:");
urlField.setText("192.168.1.123");
org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(
getContentPane());
getContentPane().setLayout(layout);
layout
.setHorizontalGroup(layout
.createParallelGroup(
org.jdesktop.layout.GroupLayout.LEADING)
.add(
layout
.createSequentialGroup()
.add(89, 89, 89)
.add(
layout
.createParallelGroup(
org.jdesktop.layout.GroupLayout.LEADING)
.add(
layout
.createSequentialGroup()
.add(
jLabel2)
.addPreferredGap(
org.jdesktop.layout.LayoutStyle.RELATED)
.add(
urlField,
org.jdesktop.layout.GroupLayout.PREFERRED_SIZE,
org.jdesktop.layout.GroupLayout.DEFAULT_SIZE,
org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
.add(
layout
.createSequentialGroup()
.add(
layout
.createParallelGroup(
org.jdesktop.layout.GroupLayout.LEADING)
.add(
jLabel1)
.add(
loginButton))
.add(
2,
2,
2)
.add(
layout
.createParallelGroup(
org.jdesktop.layout.GroupLayout.LEADING)
.add(
layout
.createSequentialGroup()
.add(
10,
10,
10)
.add(
cancelButton))
.add(
nameField,
org.jdesktop.layout.GroupLayout.PREFERRED_SIZE,
org.jdesktop.layout.GroupLayout.DEFAULT_SIZE,
org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))))
.addContainerGap(107, Short.MAX_VALUE)));
layout
.setVerticalGroup(layout
.createParallelGroup(
org.jdesktop.layout.GroupLayout.LEADING)
.add(
layout
.createSequentialGroup()
.add(38, 38, 38)
.add(
layout
.createParallelGroup(
org.jdesktop.layout.GroupLayout.BASELINE)
.add(jLabel2)
.add(
urlField,
org.jdesktop.layout.GroupLayout.PREFERRED_SIZE,
org.jdesktop.layout.GroupLayout.DEFAULT_SIZE,
org.jdesktop.layout.GroupLayout.PREFERRED_SIZE))
.add(16, 16, 16)
.add(
layout
.createParallelGroup(
org.jdesktop.layout.GroupLayout.BASELINE)
.add(
nameField,
org.jdesktop.layout.GroupLayout.PREFERRED_SIZE,
org.jdesktop.layout.GroupLayout.DEFAULT_SIZE,
org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)
.add(jLabel1))
.add(15, 15, 15)
.add(
layout
.createParallelGroup(
org.jdesktop.layout.GroupLayout.BASELINE)
.add(loginButton).add(
cancelButton))
.addContainerGap(47, Short.MAX_VALUE)));
pack();
}// </editor-fold>//GEN-END:initComponents
// GEN-FIRST:event_jButton1ActionPerformed
// GEN-LAST:event_jButton1ActionPerformed
/**
* @param args
* the command line arguments
*/
public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
LogFrame logFrame = new LogFrame();
发表评论
-
Weblogic 10集群配置手册
2011-03-22 13:24 17401.预备知识 什么是Doma ... -
Ibatis死锁
2011-03-21 16:33 3329Ibatis 会产生死锁。 ibatis 并发量大时, ... -
(转)Spring事务配置的五种方式
2010-11-26 09:07 707Spring事务配置的五种方式 前段时间对Spr ... -
tomcat 自定义标签缓存 不执行 release方法
2010-08-09 10:23 14421、修改 apache-tomcat-5.5.26/c ... -
自己写的简单版HibernateTemplate
2010-01-18 16:02 1095HibernateTemplate : import info ... -
SiteMesh简介三
2010-01-15 14:14 8782)、新建 inline.jsp,这个页面也会被main.js ... -
SiteMesh简介二
2010-01-15 13:58 11705、 在WEB-INF下面建立文件sitemesh.xm ... -
SiteMesh简介一(图片不出来。请下附件看)
2010-01-15 13:56 1338一、 为什么要用SiteMesh 当一个大型的Java ...
相关推荐
Mina(Java Multithreaded Application Network Architecture)是一个开源的网络通信框架,由Apache软件基金会开发并维护。它提供了一个高度可扩展的、高性能的、事件驱动的I/O服务架构,广泛应用于各种网络协议的...
《基于Mina实现的多人聊天系统详解》 Mina(Java Multithreaded Network Application Framework)是一个开源的网络通信框架,由Apache软件基金会开发。它为开发者提供了构建高性能、高可用性的网络应用的强大工具,...
Mina框架和Spring框架的结合,为开发者提供了一种高效、灵活的方式来实现这样的系统,特别是多人聊天室程序。下面我们将详细探讨如何利用这两个强大的工具来构建一个稳定且功能丰富的聊天室应用。 Mina框架,全称...
接着,用户可以发送消息到服务器,服务器再将这些消息广播给所有在线的客户端,从而实现聊天功能。 3. **数据编码与解码** 在米娜中,数据通常需要经过编码和解码的过程才能在网络上传输。编码是将业务数据转化为...
以上就是关于使用Mina框架实现WebSocket服务器的关键知识点,通过深入理解和实践,你可以构建出高性能、可扩展的WebSocket服务。提供的压缩包文件可能包含了实现示例代码和HTML客户端,可以帮助你更直观地理解整个...
MINA(Multipurpose Infrastructure for Network Applications)是一个Java框架,专门设计用于构建高性能、高可用性的网络...无论是在游戏服务器、实时聊天应用还是其他需要持续连接的服务中,MINA都是一个强大的工具。
本技术原型主要展示了如何利用MINA来实现一个多人聊天系统。在这个项目中,MAVEN作为项目管理和构建工具,负责依赖管理、构建流程以及插件应用,确保项目的标准化和可维护性。MAVEN通过其pom.xml文件来定义项目依赖...
Mina(Apache MINA)则是一个网络应用框架,它简化了网络编程,特别是对于TCP/IP和UDP协议的应用,如开发聊天系统、FTP服务器等。 在"SWT采用mina网络框架做聊天系统"这个主题中,我们将探讨如何结合这两者来构建一...
MINA (Java IO Network Application Framework) 是一个由Apache软件基金会开发的开源网络通信框架,主要应用于构建高性能、高可用性的网络服务器。这个压缩包包含了MINA API文档、自学手册以及开发指南,对于学习和...
要使用Mina实现双机通讯,我们首先要创建一个服务器端(Server)和一个或多个客户端(Client)。在服务器端,我们需要实现一个Acceptor,它负责监听特定的端口,并在接收到连接请求时创建一个新的Session。Session是...
总之,MINA为Java开发者提供了一个强大的工具,它简化了网络编程的复杂性,使开发者能够专注于业务逻辑,而不是底层的网络细节。通过学习和实践"MINA_Server_Test",你可以进一步提升在服务器端开发方面的技能。
Mina提供了丰富的API和工具,简化了网络编程的复杂性,使得开发者可以专注于业务逻辑,而无需深入理解底层网络协议的实现细节。 在"实现了Mina框架简单的换行符编解码的服务器客户端通信"这一描述中,我们可以理解...
在实际应用中,你可以使用Mina来构建各种网络服务,如FTP服务器、聊天应用、远程控制工具等。通过理解并熟练运用上述知识点,你可以构建出稳定、高效的网络应用。记得在编写代码时,注意异常处理、资源管理以及性能...
- 在实际项目中,Mina常用于开发聊天服务器、游戏服务器、物联网设备通信服务器等。 8. **使用步骤**: - 创建Acceptor,配置监听端口和ProtocolHandler。 - 实现ProtocolHandler,处理网络连接的建立、数据收发...
标题 "MINA" 指的是 Apache MINA (Multipurpose Infrastructure for Network Applications),这是一个由Apache软件基金会开发的Java框架,主要用于构建高性能、高可用性的网络应用程序。MINA提供了一个高级的网络...
MINA是Apache软件基金会的一个项目,它提供了一个高度可扩展和高性能的网络应用开发框架,适用于多种传输协议,如TCP/IP和UDP/IP,以及SSL/TLS加密。在大数据传输场景中,MINA因其非阻塞I/O模型而被广泛采用,能够...
通过使用Mina,开发者可以构建复杂的服务端系统,如FTP服务器、聊天服务器或者任何需要处理大量并发连接的应用。 **Apache Mina框架** Apache Mina是一个网络通信应用框架,它提供了一个高度可扩展和高性能的基础...
MiNa(Mini NIO Asynchronous)是Apache软件基金会的一个开源项目,它提供了一个网络通信框架,适用于Java平台。在Android应用中,MiNa可以用于构建高性能、异步的网络应用,例如聊天应用、游戏服务器连接、数据同步...
【标题】"原创nio socket mina+javascript+flash实现commet长连接网页聊天室"揭示了一个基于Java NIO(Non-blocking I/O)的Socket通信框架Mina与JavaScript、Flash技术结合,实现COMET(Comet是使服务器向浏览器推...
这可能涉及到如何使用Mina实现TCP连接的保持,以及如何处理多个用户之间的消息传递。 压缩包子文件的文件名称列表只给出了"mina",这可能是项目或代码库的根目录。在这个目录下,我们可能找到以下结构: - **src**...