IO流:1:字节流(inputStream:输入流)(outputStream:输出流)。2:字符流(reader:输入流)(winter:输出流)。

首先判断是输入还是输出(站在计算机的立场);其次判断传递字符还是字节,从而选择用什么管道。字节管道是 最根本的,字符管道专门用来传递文本数据的。

操作顺序;1,建立管道。2,操作管道。3,关闭 管道。

序列化:将内存中的对象一二进制流的形式输出。

反序列化:将输入的二进制流转化为内存中的对象。(第二种产生对象的方式)

序列化中将对象转化为二进制流的叫做操作流,后面必须跟上节点流即目的地。

一篇GUI,可以照着做的public class MyFrame extends JFrame{
    
    private Container contentP;//内容面板
    
    private JLabel msgLab;//文字标签
    
    private JLabel imgLab;//图片标签
    
    private JTextField usernameTxt;//文本框
    
    private JPasswordField pwdTxt;//密码框
    
    private JButton okBtn;//按钮
    
    private JButton getMoentyBtn;//取钱按钮
    
    private JComboBox<String> teacherCmb;//下拉列表
    
    private JTextArea selfArea;//文本域
    
    private JRadioButton maleRad;//单选框
    
    private JRadioButton femaleRad;
    
    private JCheckBox hobbitBox;//复选框
    
    
    public MyFrame(){
        Toolkit tk = Toolkit.getDefaultToolkit();//获取工具对象
        int screenWidth = (int)tk.getScreenSize().getWidth();
        int screenHeight = (int)tk.getScreenSize().getHeight();
        this.setSize(500, 400);//设置窗体大小--像素
        this.setLocation((screenWidth-500)/2, (screenHeight-400)/2);//设置窗体的位置
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);//设置窗体关闭即退出程序
        this.setTitle("我的第一个GUI窗体");//标题栏设置标题
        this.setIconImage(tk.createImage("image/icon.png"));//设置标题栏图标
        this.setResizable(false);//设置窗体改变大小的能力
        this.addContent();
        this.setVisible(true);//设置该窗体可见
    }
    
    
    private void addContent(){
        this.contentP = this.getContentPane();//获取内容面板
        this.contentP.setBackground(Color.WHITE);//设置窗体背景色
        this.contentP.setLayout(null);//设置布局管理器为null---代表放入该容器的组件的大小位置全靠自定义
        
        //文本标签
        this.msgLab = new JLabel("用户名:");//产生对象
        this.msgLab.setText("用户名:");
//        this.msgLab.setBorder(BorderFactory.createLineBorder(Color.BLACK));//给标签设置边框--调试用
        this.msgLab.setFont(new Font("微软雅黑",Font.BOLD,16));//设置字体
        this.msgLab.setForeground(new Color(82,254,211));//设置字体颜色
        this.msgLab.setBounds(100, 20, 80, 30);//设置大小位置
        this.contentP.add(this.msgLab);//放入容器
        
        //图片标签
        this.imgLab = new JLabel(new ImageIcon("image/fish.jpg"));
        this.imgLab.setBounds(200, 20, 243, 167);
        this.contentP.add(this.imgLab);
        
        //文本框
        this.usernameTxt = new JTextField();
        this.usernameTxt.setBounds(20, 70, 100, 30);
        this.usernameTxt.setFont(new Font("微软雅黑",Font.BOLD,16));//设置字体
        this.usernameTxt.setForeground(new Color(82,254,211));//设置字体颜色
//        this.usernameTxt.setEditable(false);//设置文本框不可编辑
        this.contentP.add(this.usernameTxt);
        
        //密码框
        this.pwdTxt = new JPasswordField();
        this.pwdTxt.setEchoChar('*');
        this.pwdTxt.setFont(new Font("微软雅黑",Font.BOLD,16));//设置字体
        this.pwdTxt.setForeground(new Color(82,254,211));//设置字体颜色
        this.pwdTxt.setBounds(20, 120, 100, 30);
        this.contentP.add(this.pwdTxt);
        
        //按钮
        this.okBtn = new JButton("确定");
        this.okBtn.setText("确定");
        this.okBtn.setFont(new Font("微软雅黑",Font.BOLD,16));//设置字体
        this.okBtn.setForeground(new Color(82,254,211));//设置字体颜色
        this.okBtn.setBounds(20, 160, 100, 30);
        this.contentP.add(this.okBtn);
        
        this.getMoentyBtn = new JButton(new ImageIcon("image/buttonGet.jpg"));
        this.getMoentyBtn.setBounds(20, 200, 140, 50);
        this.contentP.add(this.getMoentyBtn);
        
        //下拉列表
        this.teacherCmb = new JComboBox<String>();
        this.teacherCmb.addItem("周春艳");
        this.teacherCmb.addItem("刘弯弯");
        this.teacherCmb.addItem("万洁");
        this.teacherCmb.addItem("张欣");
        this.teacherCmb.addItem("何茹薇");
        this.teacherCmb.setEditable(true);//设置为可编辑为true
        this.teacherCmb.setBounds(20, 260, 100, 20);
        this.contentP.add(this.teacherCmb);
        
        //文本域
        this.selfArea = new JTextArea();
        JScrollPane scrollP = new JScrollPane(this.selfArea);
        scrollP.setBounds(200, 200, 280, 160);
        this.contentP.add(scrollP);
        
        //单选框
        this.maleRad = new JRadioButton("男");
        this.femaleRad = new JRadioButton("女");
        this.maleRad.setBounds(20, 290, 50, 25);
        this.femaleRad.setBounds(80, 290, 50, 25);
        this.maleRad.setBackground(Color.WHITE);
        this.femaleRad.setBackground(Color.WHITE);
        this.maleRad.setSelected(true);//设置默认选中
        this.contentP.add(this.maleRad);
        this.contentP.add(this.femaleRad);
        ButtonGroup bGroup = new ButtonGroup();//按钮分组
        bGroup.add(this.maleRad);
        bGroup.add(this.femaleRad);
        
        //复选框
        this.hobbitBox = new JCheckBox("兴趣爱好");
        this.hobbitBox.setBounds(20, 325, 100, 25);
        this.contentP.add(this.hobbitBox);
    }
    
}

I/O的更多相关文章

  1. <%@ include file="">和<jsp:include file="">区别

    <%@include file="a.jsp"%>是在编译时加入,所谓静态,就是在编译的时候将jsp的代码加入进来再编译,之后运行. <jsp:include p ...

  2. <jsp:include>和<%@include file=""%>区别【131031】

    <jsp:include page=""> 父页面和包含进来的页面单独编译,单独翻译成servlet后,在前台拼成一个HTML页面. <%@include fil ...

  3. this.getClass().getResource("") url path file 区别

    首先注意 "/word/appointDismiss.docx" 前面一定要加 /,有一次我就是忘记加/ 查了半天错, 不能写成 "word/appointDismiss ...

  4. python3.0_day9_scoket基础之篇

    一.socket简单介绍 socket通常也称作"套接字",用于描述IP地址和端口,是一个通信链的句柄,应用程序通常通过"套接字"向网络发出请求或者应答网络请求 ...

  5. python学习之路网络编程篇(第一篇)socket初识

    什么是socket 网络上的两个程序通过一个双向的通信连接实现数据的交换,这个连接的一端称为socket.socket通常也称为“套接字”,是一个通信链的句柄,可以用来实现不同虚拟机或不同计算机之间的 ...

  6. php笔记篇(二)

    mysql中key .primary key .unique key 与index区别(http://www.manongjc.com/article/1487.html) php is_file() ...

  7. php 编程笔记分享 - 非常实用

    php opendir()列出目录下所有文件的两个实例 php opendir()函数讲解及遍历目录实例 php move_uploaded_file()上传文件实例及遇到问题的解决方法 php使用m ...

  8. jsp基本语法总结

    一,用jsp脚本元素调用java代码 1,jsp表达式的应用 jsp表达式将值直接插入到输出中: <%= Java Expression %>  代表一个值 隐式对象,在使用jsp表达式的 ...

  9. 27.centos7基础学习与积累-013-文件和目录的权限

    从头开始积累centos7系统运用 大牛博客: https://blog.51cto.com/yangrong/p5 https://blog.oldboyedu.com/ 文件的权限 rw-r--r ...

  10. 2020/1/31 PHP代码审计之文件包含漏洞

    0x00 文件包含简介 文件包含漏洞的产生原因是在通过引入文件时,引用的文件名,用户可控,由于传入的文件名没有经过合理的校检,或者校验被绕过,从而操作了预想之外的文件,就可能导致意外的文件泄露甚至恶意 ...

随机推荐

  1. TensorFlow白皮书

    TensorFlow [1] is an interface for expressing machine learning algorithms, and an implementation for ...

  2. Swift高级语法学习总结(转)

    Swift高级语法学习总结 1.函数 1.1 func funcNmae()->(){} 这样就定义了一个函数,它的参数为空,返回值为空,如果有参数和返回值直接写在两个括号里就可以了 1.2 参 ...

  3. JavaScript对象的chapterIII

    二.DOM对象: DOM (document object model) 文档对象模型,它定义了操作文档对象的接口. DOM 把一份html文档表示为一棵家谱树,使用parent(父), child( ...

  4. JS函数 计算 今日,昨日,本周,上周,本月

    最近有个功能会进行数据的筛选于是便写了几个快速计算 今日,昨日,本周,上周,本月 范围的function 以便以后遇到同样的问题可以直接进行复用,代码如下: /* *获取今日的起始和结束时间 *返回值 ...

  5. 微信小程序-视图容器组件

    view 视图容器 例如: <view class="section"> <view class="section__title">fl ...

  6. 《与小卡特一起学Python》Code1

    print "I love pizza!" print "pizza " * 20 print "yum " * 40 print &quo ...

  7. Ember.js入门教程、博文汇总

    第一章 对象模型 Ember.js 入门指南——类的定义.初始化.继承 Ember.js 入门指南——类的扩展(reopen) Ember.js 入门指南——计算属性(compute properti ...

  8. angular中ng-repeat ng-if 中的变量的值控制器中为什么取不到

    这个问题的本质是:v-repeat会产生子scope,这时你在控制器里拿值,相当于父scope里面取子scope的值,因为Angular.js中作用域是向上查找的,所以取不到. 操作过程如下: 相关代 ...

  9. 命名空间$.fn

    $.fn.xxx是可以用对象来调用的命名空间,例如 $.fn.input() 在声明时就可以用 $('abc').input()    $.fx是指jquery的特效. 如果使用显示.滑动.淡入淡出. ...

  10. Netscape HTTP Cooke File Parser In PHP

    http://www.hashbangcode.com/blog/netscape-http-cooke-file-parser-php I recently needed to create a f ...