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 |
网友评论