码迷,mamicode.com
首页 >  
搜索关键字:system    ( 49231个结果
修改IP地址
方法一:1、在 “解决方案资源管理器” 右击 “引用” 添加 “System.Management” 的引用。2、添加 “using System.Management;”。 1 static void SetNetworkAdapter() 2 { 3 Ma...
分类:其他好文   时间:2015-07-07 14:32:27    阅读次数:177
获取网卡信息
引入的命名空间代码如下: 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using S...
分类:其他好文   时间:2015-07-07 14:27:23    阅读次数:81
FreeMarker整合Spring 3(转)
开发环境:System:WindowsWebBrowser:IE6+、Firefox3+JavaEE Server:tomcat5.0.2.8、tomcat6IDE:eclipse、MyEclipse 8开发依赖库:JavaEE5、Spring 3.0.0.M4、FreeMarker 2.3.16E...
分类:编程语言   时间:2015-07-07 14:24:11    阅读次数:235
Java基本数据类型自动转型溢出问题
public class TestCast { public static void main(String[] args) { int money=1000000000; //10亿 int year=20; int total=money*year; System.out.println(total); } } 输出结果:-1474836480 这个时候我们就可以想到i...
分类:编程语言   时间:2015-07-07 13:05:49    阅读次数:128
android init进程分析 基本流程
android设备上电,引导程序引导进入boot(通常是uboot),加载initramfs、kernel镜像,启动kernel后,进入用户态程序。第一个用户空间程序是init, PID固定是1.在android系统上,init的代码位于/system/core/init下,基本功能有: 管理设备解析并处理启动脚本init.rc实时维护这个init.rc中的服务  init进程的系统初始化...
分类:移动开发   时间:2015-07-07 13:04:45    阅读次数:238
执行SQL的DbHelperSQL
using System;using System.Collections;using System.Collections.Specialized;using System.Data;using System.Data.SqlClient;using System.Configuration;us...
分类:数据库   时间:2015-07-07 12:52:32    阅读次数:231
c# 判断端口是否被占用
这里主要用到:命名空间System.Net.NetworkInformation下定义了一个名为IPGlobalProperties的类具体代码 1 class PortHelper 2 { 3 4 #region 指定类型的端口是否已经被使用了 5 ...
分类:Windows程序   时间:2015-07-07 12:48:24    阅读次数:176
EF中的事务处理
命名空间System.Transactions;using (TransactionScope scope = new TransactionScope()){ //Do something with context1 //Do something with context2 /...
分类:其他好文   时间:2015-07-07 12:40:09    阅读次数:243
Java break [flag]; 与continue [flag]; 区别
break [flag];直接结束掉到标记(flag)层的循环NO1:for(int i=0; i500){ System.out.println(i+"*"+j+"="+sum); break NO1; } } ...
分类:编程语言   时间:2015-07-07 12:37:05    阅读次数:144
Thread启动方式一(Thread.start):源码分析
package day11;class TestDemo extends Thread{ int count = 0; /*public void add(){ while(count<100){ count++; System.out.println(count); } }*/ pu...
分类:其他好文   时间:2015-07-07 12:36:57    阅读次数:131
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!