`
avatar_2009
  • 浏览: 3005 次
  • 性别: Icon_minigender_1
  • 来自: 北京
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
package com.livingforu.test0010; import java.util.regex.Matcher; import java.util.regex.Pattern; /** * * @author Administrator * 找出字符串中最长的,打印出来并打印该字符串在整个字符串的位置和长度 */ public class BeiNuee{ public static void main(String[] args) { String s = "adfadf12311sdfsd123123fsdfd233"; zhen ...
package com.livingforu.test0010; public class IPTransferToLong { /** * 将IP转化为Long型 * @param ipaddr * @return */ private static Long setIP(String ipaddr) {    String ip[] = ipaddr.split("\\.");     Long ipLong = 256 * 256 * 256 * Long.parseLong(ip[0])                + 256 ...
Global site tag (gtag.js) - Google Analytics