自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(11)
  • 收藏
  • 关注

原创 写个http协议

Host: localhost:8080这个换成你自己访问的网址。

2024-03-21 20:17:56 84

原创 springMVC实现多个前缀和后缀映射

<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:tx="http://www.springframework.or...

2019-08-14 14:10:13 1497

原创 serversocket实现动态网页

public class web {public static void main(String args[]){ try{Service service=new Service(); ServerSocket server=new ServerSocket(80); service.setServerSocket(server); service.start(); }...

2019-08-12 12:08:14 279

原创 Socket实现浏览

我试了几个方法都没有找到判断结束条件,但是不影响接收数据。public class Brown {public static void main(String args[]){ Socket socket=null; OutputStream outputStream=null; InputStream inputStream=null; InputStreamReader reade...

2019-08-07 14:41:27 133

原创 spring aop注解实现

public class ceshi{public static void main(String args[]){ ApplicationContext context=new ClassPathXmlApplicationContext("file:C:/Users/Administrator/workspace/test/src/test/aop.xml"); Log log=(Log...

2019-08-05 19:47:15 140

原创 spring中aop标签实现

public class ceshi{public static void main(String args[]){ ApplicationContext context=new ClassPathXmlApplicationContext("file:C:/Users/Administrator/workspace/test/src/test/aop.xml"); Log log=(Log...

2019-08-05 19:34:51 153

原创 无配置文件实现spring aop

import java.lang.reflect.Method;import org.springframework.aop.support.JdkRegexpMethodPointcut;import org.springframework.aop.support.DefaultPointcutAdvisor;import org.springframework.aop.AfterRetu...

2019-08-04 22:55:09 332

原创 Java 动态代理

public static void main(String args[]){ Main main=(Main)Proxy.newProxyInstance(Leader.class.getClassLoader(),Leader.class.getInterfaces(),new Secretary()); main.run();}}interface Main{ void...

2019-08-04 18:03:49 79

原创 html5小游戏代码-2048游戏

<!doctype html><meta name="author" content="苏道涵"/><meta name="keywords" content="2048"/><meta http-equiv="content-Type" content="text/html;charset=gb2312"/><html>&...

2019-06-29 13:53:39 23846 2

原创 html5小游戏源码- 扫雷

<!doctype html><html><head><meta name="author" content="苏道涵"/><meta name="keywords" content="扫雷,html5小游戏"/><meta name="description" content="经典扫雷小游戏"/><met...

2019-06-29 13:50:57 10374 4

原创 红黑树-自己写的红黑树插入实现

public class RedandBlack {private class Node{private boolean color=false; private int value; private Node left; private Node right;}//存储节点private Node head; private int black; private int temp=0...

2019-06-10 09:49:51 173

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除