`
ouyangfeng521
  • 浏览: 248650 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
社区版块
存档分类
最新评论
文章列表
  package com.test; public class IpTest { /** * 判断IP是否在指定范围; */ boolean i; public static boolean ipIsValid(String ipSection, String ip) { if (ipSection == null) throw new NullPointerException("IP段不能为空!"); if (ip == null) throw new NullPointerException(" ...

C#soapheader ip 过滤

    博客分类:
  • C#
  using System; using System.Data; using System.Configuration; using System.Web; using System.Collections; using System.Text.RegularExpressions; using System.Xml; using Core; namespace GreenWebService { #region MyRegion /// <summary> /// 此类为单例模式,实现ip认证,调用方法如果下 ...
刚才帮同看问题,同说调用renameTo 文件没有被重命名,看了一下原来问题出在这里 /** * @(#) Test.java Created on 2012-6-4 * * Copyright (c) 2012 Aspire. All Rights Reserved */ package com.and.test; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; /** * The c ...
项目源码地址:https://fengsourcecode.googlecode.com/svn/trunk/ProvinceAndCity   1.首先是bean 省的 /** * @(#) Province.java Created on 2012-6-13 * * Copyright (c) 2012 Aspire. All Rights Reserved */ package com.android.test.provinceandcity.bean; import java.util.List; /** * The class <c ...
静默安装前 手机 必须 root   以下是代码 、 package com.test.root.install; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import org.xml.sax.InputSource; import android.app.Activity; import android.os.Bundle; import android.os.Handler; import android.view.V ...
执行Linux下的top、ps等命令,这些命令你也通过adb可以执行查看效果。          1 )top 命令如下: adb shell  $ top  -h  top  -h  Usage: top  [-m max_procs] [-n iterations] [-d delay] [-s sort_column] [-t] [-h]    -m num  Maximum number of  processes  to  display. // 最多显示多少个进程    -n num  Updat ...
android AIDL 多个客户端调用一个服务器代码 代码在附件里 有兴趣的可以看下
import java.util.Scanner; public class Test { private T t = new T(); /** * @param args */ public static void main(String[] args) { final Test test = new Test(); final Scanner scanner = new Scanner(System.in); while (true) { System.out.println("请输入:1.启动 2.暂停 3.继续 4 ...

状态机 源码

不说了 就是写个状态机 上代码
最近在看其它公司提供的项目代码中看到有个java包,是Protocol Buffers 用来作数据传输(因为它比xml解析要快)所以百度 Protocol Buffers  现在开始安装: 1.下载安装包解压   2.进入终端本人平台为 mac os x ,进入解压文件夹,新建个文件夹proto(安装到这里) $ ./configure  --prefix = (proto文件路径) 如果这里报错(no acpetable c complier fond int $PATH)因为你没有安装 gcc ,因为本人安装了xcode 4.3.2 所以要下载Command tools of ...
在Objective-c 2 .0中引入了 property 和 synthesize 为方便存取   1 让大家认识一下 property  and  synthesize  吧  @property预编译命令的作用是自动声明属性的setter和getter方法  @synthesize也是一种新的编译器功能,表示“创建该属性的访问器”
defaults write com.apple.finder AppleShowAllFiles -bool true KillAll Finder
android 对象到json json到对象   接口类 package com.test.json; import org.json.JSONException; import org.json.JSONObject; public interface JsonSerializable { abstract void deCode(JSONObject object) throws JSONException; abstract void enCode(JSONObject object) throws JSONException; } ...
private Bitmap getViewBitmap(View v) { v.clearFocus(); v.setPressed(false); boolean willNotCache = v.willNotCacheDrawing(); v.setWillNotCacheDrawing(false); // Reset the drawing cache background color to fully transparent // for the duration o ...
资源是您在代码中使用到的并且在编译时被打包进您的应用程序的附加文件。 Android支持多种不同的文件,包括 XML、 PNG和 JPEG文件。 XML文件的格式决定于其描述的内容。这些文件将描述文件支持的类型、语法或格式。 处于加载效率的考虑,资源被从代码中分离出来,而且 XML文件被编译进二进制代码中。字符串,类似的会被压缩存储为更经济的格式。处于这样或那样的原因, Android平台中会存在很多不同的资源和资源定义文件。 这些文件包括以下部分: 资源 o    创建资源
Global site tag (gtag.js) - Google Analytics