public object SetDefault(object obj) { PropertyInfo[] fields = obj.GetType().GetProperties(); foreach (PropertyInfo v in fields) { if(v.PropertyType== ...
分类:
其他好文 时间:
2016-08-31 02:05:13
阅读次数:
309
hibernate3和4中 HibernateSessionFactory中不同之处 //serviceRegistry = new ServiceRegistryBuilder().applySettings(configuration.getProperties()).buildServiceR ...
分类:
移动开发 时间:
2016-08-15 12:43:00
阅读次数:
186
public SonClass:FatherClass { 定义属性 。。。。 } Type thisType = typeof(SonClass);方法一:PropertyInfo[] pis = thisType.BaseType.GetProperties();//thisType.BaseT ...
header(‘Content-Type:application/vnd.ms-excel‘); header(‘Content-Disposition:p_w_upload;filename="123.csv"‘); header(‘Cache-Control:max-age=0‘); $this->load->library(‘PHPExcel‘); //设置文件属性 $this->phpexcel->getProperties()->setC..
分类:
Web程序 时间:
2016-05-12 00:07:47
阅读次数:
416
类 System: 类中的方法和属性都是静态的。
out: 代表标准输出,默认是控制台。
in: 标准输入,默认是键盘。
描述系统的一些信息。
获取系统属性信息:Properties getProperties();
import java.util.*;
class day18
{
public static void main(String[] args)
{
P...
分类:
编程语言 时间:
2016-05-07 10:17:36
阅读次数:
232
selenium 使用的时候要注意
1,浏览器的版本
2,和对应 jar 包
3,浏览器的环境变量设置
System.setProperties("key","value")
如下(创建浏览器对象):
System.getProperties().setProperty("phantomjs.binary.path", “"phantomjs-2.1.1-windows/bin/ph...
分类:
Web程序 时间:
2016-05-07 08:09:31
阅读次数:
216
1、 系统类 java.lang包 System类 sys.out;sys.exit;sys.gc; sys.currentTimeMillis(); 得到从1970-01-01到当前时间的毫秒数,long型 sys.getProperties();&sys.getProperty();user.d ...
分类:
编程语言 时间:
2016-04-22 23:56:13
阅读次数:
195
spring java 获取webapp下文件路径 String osName = System.getProperties().getProperty("os.name"); String sp = (osName.equals("Window") ? "\\" : "/"); ...
分类:
移动开发 时间:
2016-04-21 16:48:57
阅读次数:
331
1、System:描述系统的一些信息 preperties();获取系统信息 Properties prop =new System.getProperties(); 是hashtable 的子类。用map的方法去除该类集合中的元素。该集合中存储的都是字符串,没有泛型定义。 String calue ...
分类:
其他好文 时间:
2016-04-16 16:44:34
阅读次数:
168
Properties props=System.getProperties(); //系统属性 输出所有系统信息到控制台properties.list(System.out); 输出指定信息到控制台 System.out.println("Java的运行环境版本:"+props.getPropert ...
分类:
其他好文 时间:
2016-04-04 09:12:04
阅读次数:
170