MailTest

简介: GridBagLayout把一个界面分为m行n列的网格 GridBagConstraints的一个实例:gridx = 2; // X2,表示组件位于第2列gridy = 0; // Y0,表示组件位于第0行gridwidth = 1; // 横占一个单元格,即表示组件占1列gridheight = 1; // 列占一个单元格,即表示组件占1行weightx = 0.


GridBagLayout把一个界面分为m行n列的网格

GridBagConstraints的一个实例:
gridx = 2; // X2,表示组件位于第2列
gridy = 0; // Y0,表示组件位于第0行
gridwidth = 1; // 横占一个单元格,即表示组件占1列
gridheight = 1; // 列占一个单元格,即表示组件占1行
weightx = 0.0; // 当窗口放大时,长度不变
weighty = 0.0; // 当窗口放大时,高度不变
anchor = GridBagConstraints.NORTH; // 当组件没有空间大时,使组件处在北部
fill = GridBagConstraints.BOTH; // 当格子有剩余空间时的填充方式。当前在水平和垂直两个方向填充
insert = new Insets(0, 0, 0, 0); // 组件彼此的间距
ipadx = 0; // 组件内部填充空间,即给组件的最小宽度添加多大的空间
ipady = 0; // 组件内部填充空间,即给组件的最小高度添加多大的空间
new GridBagConstraints(gridx, gridy, gridwidth, gridheight, weightx, weighty, anchor, fill, insert, ipadx, ipady);
http://blog.sina.com.cn/s/blog_4412ae250100062n.html

API:

java.awt.GridBagConstraints.GridBagConstraints(int gridx, int gridy, 
int gridwidth, int gridheight,
double weightx, double weighty,
int anchor, int fill, Insets insets, int ipadx, int ipady) Creates a GridBagConstraints object with all of its fields set to the passed-in arguments.
Note: Because the use of this constructor hinders readability of source code,
this constructor should only be used by automatic source code generation tools. Parameters: gridx The initial gridx value. gridy The initial gridy value. gridwidth The initial gridwidth value. gridheight The initial gridheight value. weightx The initial weightx value. weighty The initial weighty value. anchor The initial anchor value. fill The initial fill value. insets The initial insets value. ipadx The initial ipadx value. ipady The initial ipady value.

 

package swing.mail;

import java.awt.GridBagLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.PrintWriter;
import java.net.InetAddress;
import java.net.Socket;
import java.util.Scanner;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import javax.swing.SwingWorker;

/*2015-7-7*/
public class MailTest {
    public static void main(String[] args) {
        JFrame frame = new MailTestFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setVisible(true);
        frame.setLocationRelativeTo(null);
    }

}

class MailTestFrame extends JFrame {
    private static final long serialVersionUID = 1L;

    private Scanner in;
    private PrintWriter out;
    private JTextField from;
    private JTextField to;
    private JTextField smtpServer;
    private JTextArea message;
    private JTextArea comm;

    public static final int DEFAULT_WIDTH = 300;
    public static final int DEFAULT_HEIGHT = 300;

    public MailTestFrame() {
        setTitle("MailTest");
        setSize(DEFAULT_WIDTH, DEFAULT_HEIGHT);

        setLayout(new GridBagLayout());

        add(new JLabel("From:"), new GBC(0, 0).setFill(GBC.HORIZONTAL));

        from = new JTextField(20);
        add(from, new GBC(1, 0).setFill(GBC.HORIZONTAL).setWeight(100, 0));

        add(new JLabel("To:"), new GBC(0, 1).setFill(GBC.HORIZONTAL));

        to = new JTextField(20);
        add(to, new GBC(1, 1).setFill(GBC.HORIZONTAL).setWeight(100, 0));

        add(new JLabel("SMTP server:"), new GBC(0, 2).setFill(GBC.HORIZONTAL));

        smtpServer = new JTextField(20);
        add(smtpServer, new GBC(1, 2).setFill(GBC.HORIZONTAL).setWeight(100, 0));

        message = new JTextArea();
        add(new JScrollPane(message), new GBC(0, 3, 2, 1).setFill(GBC.BOTH).setWeight(100, 100));

        comm = new JTextArea();
        add(new JScrollPane(comm), new GBC(0, 4, 2, 1).setFill(GBC.BOTH).setWeight(100, 100));

        JPanel buttonPanel = new JPanel();
        add(buttonPanel, new GBC(0, 5, 2, 1));

        JButton sendButton = new JButton("Send");
        buttonPanel.add(sendButton);
        sendButton.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                new SwingWorker<Void, Void>() {

                    @Override
                    protected Void doInBackground() throws Exception {
                        comm.setText("");
                        sendMail();
                        return null;
                    }
                }.execute();

            }
        });

    }

    public void sendMail() {
        try {
            Socket s = new Socket(smtpServer.getText(), 25);
            InputStream inputStream = s.getInputStream();
            OutputStream outputStream = s.getOutputStream();

            in = new Scanner(inputStream);
            out = new PrintWriter(outputStream, true);

            String hostName = InetAddress.getLocalHost().getHostName();
            receive();
            send("Hello" + hostName);
            receive();
            send("Mail From:<" + from.getText() + ">");
            receive();
            send("RCPT TO:<" + to.getText() + ">");
            receive();
            send("DATA");
            receive();
            send(message.getText());
            send(".");
            receive();
            s.close();
        } catch (Exception e) {
            comm.append("Error:" + e);

        }

    }

    private void send(String string) {
        comm.append(string);
        comm.append("\n");
        out.println(string.replace("\n", "\r\n"));
        out.print("\r\n");
        out.flush();
    }

    private void receive() {
        String line = in.nextLine();
        comm.append(line);
        comm.append("\n");
    }

}

 

package swing.mail;

import java.awt.GridBagConstraints;

/**
 * This class simplifies the use of the GridBagConstraints class.
 */
public class GBC extends GridBagConstraints
{
    private static final long serialVersionUID = 1L;

    /**
     * Constructs a GBC with a given gridx and gridy position and all other grid
     * bag constraint values set to the default.
     * 
     * @param gridx
     *            the gridx position
     * @param gridy
     *            the gridy position
     */
    public GBC(int gridx, int gridy)
    {
        this.gridx = gridx;
        this.gridy = gridy;
    }

    /**
     * Constructs a GBC with given gridx, gridy, gridwidth, gridheight and all
     * other grid bag constraint values set to the default.
     * 
     * @param gridx
     *            the gridx position
     * @param gridy
     *            the gridy position
     * @param gridwidth
     *            the cell span in x-direction
     * @param gridheight
     *            the cell span in y-direction
     */
    public GBC(int gridx, int gridy, int gridwidth, int gridheight) {
        this.gridx = gridx;
        this.gridy = gridy;
        this.gridwidth = gridwidth;
        this.gridheight = gridheight;
    }

    /**
     * Sets the cell spans.
     * 
     * @param gridwidth
     *            the cell span in x-direction
     * @param gridheight
     *            the cell span in y-direction
     * @return this object for further modification
     */
    public GBC setSpan(int gridwidth, int gridheight)
    {
        this.gridwidth = gridwidth;
        this.gridheight = gridheight;
        return this;
    }

    /**
     * Sets the anchor.
     * 
     * @param anchor
     *            the anchor value
     * @return this object for further modification
     */
    public GBC setAnchor(int anchor)
    {
        this.anchor = anchor;
        return this;
    }

    /**
     * Sets the fill direction.
     * 
     * @param fill
     *            the fill direction
     * @return this object for further modification
     */
    public GBC setFill(int fill)
    {
        this.fill = fill;
        return this;
    }

    /**
     * Sets the cell weights.
     * 
     * @param weightx
     *            the cell weight in x-direction
     * @param weighty
     *            the cell weight in y-direction
     * @return this object for further modification
     */
    public GBC setWeight(double weightx, double weighty)
    {
        this.weightx = weightx;
        this.weighty = weighty;
        return this;
    }

    /**
     * Sets the insets of this cell.
     * 
     * @param distance
     *            the spacing to use in all directions
     * @return this object for further modification
     */
    public GBC setInsets(int distance)
    {
        this.insets = new java.awt.Insets(
                distance, distance, distance, distance);
        return this;
    }

    /**
     * Sets the insets of this cell.
     * 
     * @param top
     *            the spacing to use on top
     * @param left
     *            the spacing to use to the left
     * @param bottom
     *            the spacing to use on the bottom
     * @param right
     *            the spacing to use to the right
     * @return this object for further modification
     */
    public GBC setInsets(int top, int left, int bottom, int right)
    {
        this.insets = new java.awt.Insets(
                top, left, bottom, right);
        return this;
    }

    /**
     * Sets the internal padding
     * 
     * @param ipadx
     *            the internal padding in x-direction
     * @param ipady
     *            the internal padding in y-direction
     * @return this object for further modification
     */
    public GBC setIpad(int ipadx, int ipady)
    {
        this.ipadx = ipadx;
        this.ipady = ipady;
        return this;
    }
}

 http://bbs.csdn.net/topics/300244821

相关文章
|
6月前
|
存储 缓存 关系型数据库
singleflight解决缓存击穿与源码分析
singleflight解决缓存击穿与源码分析
124 0
|
6月前
|
容器
【鸿蒙软件开发】ArkTS常用组件之Button
【鸿蒙软件开发】ArkTS常用组件之Button
1183 0
|
机器学习/深度学习 编解码 自然语言处理
CVPR 2022|快手联合中科院自动化所提出基于Transformer的图像风格化方法
CVPR 2022|快手联合中科院自动化所提出基于Transformer的图像风格化方法
206 0
|
API C#
HandyControl新手引导
HandyControl新手引导
318 0
HandyControl新手引导
|
算法 调度 决策智能
基于改进的离散PSO算法的FJSP的研究(Python代码实现)
基于改进的离散PSO算法的FJSP的研究(Python代码实现)
185 0
|
Linux Docker 容器
docker镜像加速设置
docker镜像加速设置
2744 0
|
缓存 网络协议 NoSQL
Laravel如何优雅的使用Swoole
Laravel如何优雅的使用Swoole
292 0
|
机器学习/深度学习 人工智能 自然语言处理
关于openAI的分析报告
随着机器学习和人工智能技术的不断发展,OpenAI逐渐成为了该领域中的领导者之一。OpenAI是一个非营利性的人工智能研究机构,由一组志愿者、投资者和技术开发人员组成,致力于研究和开发创新的人工智能技术。 在本报告中,我们将探讨OpenAI的应用范围和实际用途,以及其对多个领域的影响。我们认为,OpenAI的应用不仅仅限于人工智能领域,而是可以在医疗、金融、能源、制造和安全等众多领域中发挥巨大作用。
297 0
|
设计模式 C#
C#(十九)之抽象类abstract
本篇内容记录了C#中的抽象类的一些特点。
248 0
C#(十九)之抽象类abstract
|
Web App开发 分布式计算 分布式数据库
使用CopyTable同步HBase数据
CopyTable是Hbase提供的一个数据同步工具,可以用于同步表的部分或全部数据。本文介绍如何使用CopyTable同步HBase数据。针对没有hadoop集群的用户,还介绍了单机运行CopyTable的配置和参数。
8610 0