chapter编写字符界面应用_第1页
chapter编写字符界面应用_第2页
chapter编写字符界面应用_第3页
chapter编写字符界面应用_第4页
chapter编写字符界面应用_第5页
已阅读5页,还剩26页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、编写字符界面应用(上)命令行参数常用系统属性Properties类System类中和属性有关的操作从属性文件中读取属性标准输入输出命令行参数在windows下,通过java.exe可执行程序来运行Java程序,格式如下 java ClassName para_list在启动Java应用程序时可以一次性地向应用程序中传递0多个参数-命令行参数;命令行参数通过public static void main(String args)中的main方法接收命令行参数例子(示例9-1)public class ConsoleParamspublic static void main(String args

2、)if(args.length!=2)System.exit(0);String param1 = args0;String param2 = args1;系统属性Java中系统属性就是Java的环境变量System.getProperties()方法会返回系统属性值。System.getProperty()方法返回一个String来代表系统属性。在命令行中可用java D来加入一个系统属性Properties类Properties类实现了从名字到值的映射propertyNames()方法返回一个包含所有属性名的Enumeration对象getProperty()方法返回一个代表该属性值的字符

3、串使用load()或store()方法能从文件读入属性集或将属性集写入文件Properties在java.util包中系统属性例子(示例9-2)public class TestProperties public static void main(String args) Properties props = System.getProperties(); Enumeration prop_names = pertyNames(); while ( prop_names.hasMoreElements() ) String prop_name = (String) prop_

4、names.nextElement(); String property = props.getProperty(prop_name); + is + property + ); 从文件中读取属性的例子(示例9-3)oracle_url=jdbc:oracle:thin:localhost:1521:O920oracle_name = O920oracle_user = scottoracle_pwd= tigerfile_path=c:cctvfilesvirtual_path=examples/从文件重读取属性的例子(con.)public class ReadProprivate Str

5、ing oracle_url,oracle_name,oracle_user,oracle_pwd;private String file_path,virtual_path;public ReadPro()tryProperties props = new Properties();File f=new File(C:OracleSperties);FileInputStream in = new FileInputStream(f);props.load(in);in.close();oracle_url = props.getProperty(oracle_url);.

6、.catch(IOException e). .控制台输入/输出System.out可向标准输出设备输出 它是一个PrintStream对象System.in可从标准的输入设备输入 它是一个InputStream对象System.err可向标准的错误设备输出 它是一个PrintStream对象从键盘输入例子(示例9-4)public class KeyboardInput public static void main (String args) String s; /创建一个BufferedReader对象从键盘逐行读入数据 InputStreamReader ir = new InputS

7、treamReader(System.in); BufferedReader in = new BufferedReader(ir); nWindows: Type ctrl-c to exit.); try / 每读入一行,向标准输出设备输出 while (s = in.readLine() != null) / 关闭流,这步动作在对流的操作完成后一定要做。 in.close(); catch (IOException e) / Catch any IO exceptions. e.printStackTrace(); 向标准设备输出println()方法将参数打印出来,并加上”n”字符。p

8、rint()方法,打印参数,但不加新行print和println方法对多数简单数据类型进行了重载(boolean, char, int, long, float, double)和char, Object以及Stringprint(Object)或println(Object)将会调用该对象的toString()方法,打印它的返回字符串向标准设备输出例子(示例9-5)public class Echopublic static void main(String args)int a = 100;boolean b = true;Object o = new Object();编写字符界面应用(

9、下)Math类字符串类集合类文件操作DeprecationMath类Math类中包含了一组数学函数 截取:ceil、floor、round 变量的max、min、abs 三角函数:sin、cos、tan、asin、acos、atan、toDegrees和toRadians 对数指数:log和exp 其它:sqrt、pow、random 常数:PI、EMath类使用例子(示例9-6)public class TestMathpublic static void main(String args)/得到一个随机数double d = Math.random();/计算半径为10的圆的周长doubl

10、e p = 2*Math.PI*10; String类String对象代表一组不可改变的Unicode字符序列它的方法可用来创造新的字符串:concat、replace、substring、toLowerCase、toUpperCase和trim。查找字符的方法:endWith、startWith、 indexOf、 lastIndexOf。比较字符的方法:equals、equalsIgnoreCase、compareTo。其它:charAt、length()String对象的创建(示例9-7)法一: String s = new String(“This is a string”);法二:

11、String s = “This is another string”;String对象创建(con.) (示例9-8)String s1 = “Test”; /line 1String s2 = “Test”; /line 2Tests1s2Line 1Line 2StringBuffer类(示例9-9)StringBuffer对象代表一组可改变的Unicode字符序列构建器: StringBuffer() 创建一个空的字符缓冲,长度为16个字符容量; StringBuffer(int capacity) 用指定的初始容量创建一个空的字符缓冲; StringBuffer(String ini

12、tString) 创建包含initString的字符缓冲,并加上16个字符的备用空间。缓冲的修改操作:append、insert、reverse、setCharAt、setLength。Collections(集合) API一个collection(集合)是用一个对象来代表一组对象,其中的每个对象作为collection的一个元素。在Collection API中,代表对象集合的接口有: Collection 抽象的集合 Set Collection的子接口,一个无序无重复集 List Collection的子接口,一个有序可重复集Collection API层次结构CollectionSet

13、HashSetListArrayListVectorList例子(示例9-10)public class ListExample public static void main(String args) List list = new ArrayList(); list.add(one); list.add(second); list.add(3rd); list.add(new Integer(4); list.add(new Float(5.0F); list.add(second); list.add(new Integer(4); Set例子(示例9-11)public class S

14、etExample public static void main(String args) Set set = new HashSet(); set.add(one); set.add(second); set.add(3rd); set.add(new Integer(4); set.add(new Float(5.0F); set.add(second); set.add(new Integer(4); Iterators(遍历器) (示例9-12)Iteration是指取得集合中每一个元素的过程 List list = new ArrayList(); Iterator element

15、s = list.iterator(); while( elements.hasNext() ) File对象常用方法(示例9-13)和文件名相关String getName()String getPath()String getAbsolutePath()String getParent()boolean renameTo(File newName)文件检测boolean exists()boolean canWrite()boolean canRead()boolean isFile()boolean isDirectory()boolean isAbsolute()File对象常用方法(

16、con.)获取常规文件信息 long lastModified() long length() boolean delete() 目录操作 boolean mkdir() String list()文件过滤(示例9-14)通过在File中的list()方法中加入FileNameFilter参数,可以只将满足条件的文件列出来FileNameFilter是一个接口,只有一个accept()方法需要实现Deprecation (示例9-15)Deprecation关键字可用于标记类、属性和方法,表明这些类,属性或方法已过时、不再提倡使用.Deprecation 成分均存在相应的替代类、属性或方法,这些替代者可能采用了更标准化的命名惯例、或功能更适用.在移植Java代码时,可使用 deprecation 选项获得有关的详细信息.javac -deprecation Test.javajava.io.File类封装了文件对象创建文件对象 File myFile; myFile = new File(“myfile.txt”); myFile = new File(“Mydocs”,”myfile.txt”);在Java中,将文件路径也当作文件来处理Deprecation例子public class TestDeppublic static void main(String arg

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论