| 类 | 说明 |
|---|---|
| FTPUploadFile |
FTP 上传属性信息实体类
通常这些信息包含服务器地址、登录用户信息以及要被上传的文件信息
FTP upload info entity
Usually this info includes server address, login user info
and file that will be uploaded
|
| FTPUploadInfo | 已过时 |
| InterceptedMethod |
拦截器中的方法实体类
主要是包含一些拦截器中需要用到的,比如当前执行方法,被拦截方法的返回结果等等
Entity of intercepted method
Some attributes that interceptor will use,
such as current method and invoking result
|
| LoginInfo |
用来表示登录信息的实体类
登陆一般有用户名和密码
Login info entity
Login info usually has username and password
|
| ServerAddress |
服务器地址实体类
用来表示一个服务器地址,比如 ip + port
Server address entity
It is used to find a server by ip and port
在使用的时候,推荐直接使用有参构造器
看起来就像这样:
// 指定网络地址的端口
new ServerAddress("127.0.0.1", "21");
Advise using the constructor with arguments
It looks like this:
// Appointed address and port
new ServerAddress("127.0.0.1", "21");
|
| SimpleLruCache<K,V> |
简易版的 LRU 缓存
使用 LinkedHashMap 加 Timer 实现
Simple LRU cache
Use LinkedHashMap and Timer
|
Copyright © 2019. All Rights Reserved.