美文网首页
初学markdown

初学markdown

作者: 强壮de西兰花 | 来源:发表于2017-03-21 20:40 被阅读6次

    1.插入图片



    2.插入链接

    幕 课 网

    3.引用

    你好啊,李银河。 --王小波

    4.粗体斜体
    哈哈 , 。 哈哈!
    5.单行代码
    System.out.println("你好啊,李银河。");
    6.多行代码

    public static void main(String[] args) {
            try {
                //1.创建客户端的SOcket、指定服务器地址和端口号
                Socket socket = new Socket("localhost", 8888);
                //2.获取输出流,用来向服务器端发送信息
                OutputStream os = socket.getOutputStream();
                PrintWriter pw =new PrintWriter(os);//将输出流包装为打印流
                pw.write("用户名:admin;密码:123");
                pw.flush();
                pw.close();
                os.close();
                socket.close();
            } catch (UnknownHostException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
    
    
    Tables Are Cool
    col 3 is right-aligned $1600
    col 2 is centered $12
    zebra stripes are neat $1

    7.表格

    Tables Are Cool
    col 3 is right-aligned $1600
    col 2 is centered $12
    zebra stripes are neat $1

    相关文章

      网友评论

          本文标题:初学markdown

          本文链接:https://www.haomeiwen.com/subject/fyzgnttx.html