性能测试 : 偏好内容 « 开发相关类 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 开发相关类 » 偏好内容屏幕截图 
性能测试
性能测试
  
/*
 * Copyright (c) 2006 Sun Microsystems, Inc. All Rights Reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * -Redistribution of source code must retain the above copyright notice, this
 *  list of conditions and the following disclaimer.
 *
 * -Redistribution in binary form must reproduce the above copyright notice,
 *  this list of conditions and the following disclaimer in the documentation
 *  and/or other materials provided with the distribution.
 *
 * Neither the name of Sun Microsystems, Inc. or the names of contributors may
 * be used to endorse or promote products derived from this software without
 * specific prior written permission.
 *
 * This software is provided "AS IS," without a warranty of any kind. ALL
 * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING
 * ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
 * OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN MIDROSYSTEMS, INC. ("SUN")
 * AND ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE
 * AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
 * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST
 * REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL,
 * INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY
 * OF LIABILITY, ARISING OUT OF THE USE OF OR INABILITY TO USE THIS SOFTWARE,
 * EVEN IF SUN HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
 *
 * You acknowledge that this software is not designed, licensed or intended
 * for use in the design, construction, operation or maintenance of any
 * nuclear facility.
 */


import java.io.FileInputStream;
import java.util.Properties;

public class PropertiesTest {
  public static void main(String[] argsthrows Exception {
    // set up new properties object
    // from file "myProperties.txt"
    FileInputStream propFile = new FileInputStream("myProperties.txt");
    Properties p = new Properties(System.getProperties());
    p.load(propFile);

    // set the system properties
    System.setProperties(p);
    // display new properties
    System.getProperties().list(System.out);
  }
}

//file:myProperties.txt

/*
subliminal.message=Buy Java Now!


*/

           
         
    
  
Related examples in the same category
1. Put key value pair to PreferencePut key value pair to Preference
2. 获取childrenNames优惠获取childrenNames优惠
3. 从偏好中取得钥匙从偏好中取得钥匙
4. 从偏好中获取名称和父节点从偏好中获取名称和父节点
5. 从偏好中获取节点从偏好中获取节点
6. 从偏好中获得值从偏好中获得值
7. 输出偏好到XML文件输出偏好到XML文件
8. 通过引用传数据通过引用传数据
9. Retrieve the preference node using a Class object and saves and retrieves a preference in the node.
10. 确定是否偏好节点包含特定关键词
11. 确定是否偏好节点包含特定值
12. 删除偏好节点
13. 从偏好中使用和设置的Java类型值
14. 获得倾向于项和值的最大规模
15. 获得偏好树根
16. 检索偏好节点
17. 消除偏好节点
18. 确定是否存在偏好节点
19. 检索倾向父节点和子节点
20. 输出偏好节点
21. 出口偏好节点子树
22. 确定何时倾向于节点添加或删除
23. 在Windows注册表读/写数据
24. 在倾向于节点听力改变偏好值
25. 使用偏好保存数据的API使用偏好保存数据的API
26. INI文件INI文件
27. 偏好为例:导出到文件偏好为例:导出到文件
28. 属性负荷
29. 属性TreeMap和流属性TreeMap和流
30. 解析属性文件解析属性文件
31. 预置演示预置演示
32. 储存排序的属性
33. 从文本文件加载配置参数属性
34. 通过一个applet读取属性文件
35. 从Jar文件读取属性
36. 在启动目录加载一个属性文件
37. 属性文件有一个多行值
38. 转换属性名单编制成映射
39. 列出所有系统属性
40. 使用和设置属性
41. 使用XML的属性
42. 存储性能作为XML文件
43. 阅读和写作一属性文件
44. 读取系统属性作为一个整数
45. 使用java.util.Properties读取配置文件
46. 从XML文件加载特性
47. 下面是一个属性文件内容的例子
48. 使用注册表来存储信息(预置的API )
49. 在类路径中加载一个属性文件
50. 列出了系统性能
51. 性能演示
52. PropsToXML takes a standard Java properties file, and converts it into an XML file
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.