A B C D E F G H I J K L M N O P Q R S T U V W X Z

R

rand(int, int) - 类 grapes.Grapes 中的静态方法
获取随机整数(固定范围)
rand(int) - 类 grapes.Grapes 中的静态方法
 
randArray(Object, int) - 类 grapes.Grapes 中的静态方法
获取随机集合值(Object[]、List、Map)
randArrayId(Object, int) - 类 grapes.Grapes 中的静态方法
获取随机集合序列(Object[]、Collection、Map)
randList(List, int) - 类 grapes.Grapes 中的静态方法
获取随机集合值(ArrayList集合)
random(String, int) - 类 grapes.Grapes 中的静态方法
获取某字符串源中的随机字符串
random(int, boolean) - 类 grapes.Grapes 中的静态方法
获取随机字符串(为0-9和A-Z字符串)
random(int) - 类 grapes.Grapes 中的静态方法
 
readFile(File, String) - 类 grapes.Files 中的静态方法
读取内容
readFile(String, String) - 类 grapes.Files 中的静态方法
 
readFile(File) - 类 grapes.Files 中的静态方法
 
readFile(String) - 类 grapes.Files 中的静态方法
 
readFile(File, String, int) - 类 grapes.Files 中的静态方法
读取内容
readFile(String, String, int) - 类 grapes.Files 中的静态方法
 
readFile(File) - 类 grapes.pack.xml.XMLOperate 中的方法
读取本地XML文档
readFileList(File, String) - 类 grapes.Files 中的静态方法
读取文件内容按行存到List
readFileList(String, String) - 类 grapes.Files 中的静态方法
 
readGIFImage(Object) - 类 grapes.image.Images 中的静态方法
读取图片(GIF)
readJPEGImage(Object) - 类 grapes.image.Images 中的静态方法
读取图片(JPEG[PNG、BMP])
readStream(InputStream) - 类 grapes.pack.xml.XMLOperate 中的方法
读取XML文档流
readText(String) - 类 grapes.pack.xml.XMLOperate 中的方法
读取文本XML文档
readURL(String) - 类 grapes.pack.xml.XMLOperate 中的方法
读取网络XML文档
readURLGIFImage(String) - 类 grapes.image.Images 中的静态方法
读取网络图片(GIF)[仅支持HTTP协议]
readURLGIFImage(Object, Object, Images.ImagesNameGenre) - 类 grapes.image.Images 中的静态方法
读取网络图片(GIF)并保存输出[仅支持HTTP协议]
readURLImage(String, String, Images.ImagesNameGenre) - 类 grapes.image.Images 中的静态方法
读取网络图片(GIF、JPEG[PNG、BMP])并保存输出[仅支持HTTP协议]
readURLJPEGImage(String) - 类 grapes.image.Images 中的静态方法
读取网络图片(JPEG[PNG、BMP])[仅支持HTTP协议]
readURLJPEGImage(Object, Object, Images.ImagesNameGenre) - 类 grapes.image.Images 中的静态方法
读取网络图片(JPEG[PNG、BMP])并保存输出[仅支持HTTP协议]
readValue(String, String) - 类 grapes.pack.JSON 中的静态方法
从JSON字符串中取值(含嵌套路径)
recive(String, String, boolean) - 类 grapes.mail.Mail 中的方法
邮件接收
Reflection - grapes 中的 类
反射操作
Reflection() - 类 grapes.Reflection 的构造方法
 
regex(String, Object) - 类 grapes.Grapes 中的静态方法
获取某字符串合适的正则规则
regex(String, String) - 类 grapes.Grapes 中的静态方法
获取某字符串符合正则规则的字符串(可重复)并保存为列表
regexId(String, String) - 类 grapes.Grapes 中的静态方法
获取某字符串符合正则规则的字符串(不重复)并保存为Map<String, Integer> Grapes.regexID(String str, String regex).get(name) 与 Grapes.arrayID(regex(String str, String regex), name) 得到的结果相同,速度比循环数组还快
remove(String) - 类 grapes.cache.Cache 中的方法
移除缓存数据(关键字)
remove(String, String) - 类 grapes.cache.Cache 中的方法
移除缓存数据(批量)
remove(String, String) - 类 grapes.Grapes 中的静态方法
在字符串 str 中移除 remove 字符串,如果不存在 str 原文输出
remove(String, char) - 类 grapes.Grapes 中的静态方法
在字符串 str 中移除 remove 字符,如果不存在 str 原文输出
removeAll() - 类 grapes.cache.Cache 中的方法
移除缓存数据(所有)
removeCookie(HttpServletRequest, HttpServletResponse, String) - 类 grapes.Cookies 中的静态方法
移除Cookie
removeEnd(String, String) - 类 grapes.Grapes 中的静态方法
在字符串 str 结尾移除 remove 字符串,如果不存在 str 原文输出
removeEndIgnoreCase(String, String) - 类 grapes.Grapes 中的静态方法
在字符串 str 结尾移除 remove 字符串,如果不存在 str 原文输出,不区分大小写
removeStart(String, String) - 类 grapes.Grapes 中的静态方法
在字符串 str 开头移除 remove 字符串,如果不存在 str 原文输出
removeStartIgnoreCase(String, String) - 类 grapes.Grapes 中的静态方法
在字符串 str 开头移除 remove 字符串,如果不存在 str 原文输出,不区分大小写
rename(String, String) - 类 grapes.Files 中的静态方法
文件重命名
repeat(String, int) - 类 grapes.Grapes 中的静态方法
将字符串循环n次
replace(String, String, String) - 类 grapes.Grapes 中的静态方法
替换 str 字符串中 oldStr 字符串为 newStr 字符串
replaceChar(String, char, int, int) - 类 grapes.Grapes 中的静态方法
替换 str 字符串中某段字符为 newChar 字符
replaceCharCenter(String, char, int) - 类 grapes.Grapes 中的静态方法
 
replaceCharLeft(String, char, int) - 类 grapes.Grapes 中的静态方法
 
replaceCharRight(String, char, int) - 类 grapes.Grapes 中的静态方法
 
replaceRange(String, String, String, int, boolean) - 类 grapes.Grapes 中的静态方法
替换 str 字符串中某段[按间隔符区分]字符串为 newStr 字符串 (如:127.0.0.1 替换最后一段:127.0.0.*)
reverse(String) - 类 grapes.Grapes 中的静态方法
将字符串反转显示
reverse(Object[]) - 类 grapes.Grapes 中的静态方法
将某数组反转显示
round(double, int) - 类 grapes.tools.Arith 中的静态方法
提供精确的小数位四舍五入处理。
rs(ResultSet, int) - 类 grapes.EShift 中的静态方法
将 ResultSet中某列转List(Object型)
rs(ResultSet) - 类 grapes.EShift 中的静态方法
 
rsBean(ResultSet, String, Class<T>, String[]) - 类 grapes.EShift 中的静态方法
将 ResultSet转Bean元素里(Bean型,按Bean元素循环赋值,Bean里元素需要有对应的set、get方法)
rsBean(ResultSet, String, Class<T>) - 类 grapes.EShift 中的静态方法
 
rsBean(ResultSet, Class<T>) - 类 grapes.EShift 中的静态方法
 
rsMap(ResultSet, String, String[]) - 类 grapes.EShift 中的静态方法
将ResultSet转List(Map型,按结果集循环赋值)
rsMap(ResultSet, String) - 类 grapes.EShift 中的静态方法
 
rsMap(ResultSet) - 类 grapes.EShift 中的静态方法
 
run(String[], String, Map<String, String>) - 类 grapes.PBuilder 中的方法
运行命令
run(String[], String) - 类 grapes.PBuilder 中的方法
 
run(String[]) - 类 grapes.PBuilder 中的方法
 
run(String, String, Map<String, String>) - 类 grapes.PBuilder 中的方法
 
run(String, String) - 类 grapes.PBuilder 中的方法
 
run(String) - 类 grapes.PBuilder 中的方法
 

A B C D E F G H I J K L M N O P Q R S T U V W X Z