- 浏览: 3005 次
- 性别:
- 来自: 北京
最新评论
文章列表
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 ...