快速业务通道

Java初学者备忘录 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-22

Java初学者备忘录

时间:2010-12-15

一.异常

Java对异常的处理同Delphi一样,不是刻意的去避免它的发生,而是等它发生后去补救.

Delphi的异常处理简单来说就是一下语句

Try Except//异常发生后就转入此处执行 Finally//不管异常发不发生,都转入此处运行 End

与此相类似,Java的异常处理的基本形式如下

try{ }catch(ExceptionType1 e){ file&://对/异常情况1的处理 }catch(ExceptionType2 e){ file&://对/异常情况2的处理 throw(e)//抛出异常,和Delphi中的raise是一回事 }

要补充的是,对大多数的异常,假如你要在正常运行的程序中而不是捕捉异常的程序中明确的抛出,Java的编译器需要你事先对你要抛出的异常作声明,否则不允许编译通过.这个任务是由throws来完成的.

二.Java的输入输出流

2.1 输出

System.out.print  file&://这/里out是一个静态方法哦 System.out.println System.err.print  file&://err/和out一样也是标准输出,至于有什么不同,我目前还不清楚 System.err.println

2.2 输入

System.in.read()

2.3 文件的操作

只需要几个带注释的例子就可以了。

第一个是一个显示文件基本信息的程序

import java.io.*;//调入和io相关的类 class fileinfo{ file&://注/意,main函数一定是静态方法   public static void main(String args[])throws IOException{    File fileToCheck;//使用文件对象创建实例    if (args.length>0){     for (int i=0;i<args.length;i++){      fileToCheck=new File(args[i]);//为文件对象分配空间      info(fileToCheck);//这里引用的info一定要是静态方法成员     }    }    else{     System.out.println("no file given");    }   }   public static void info(File f)throws IOException{    System.out.println("Name:"+f.getName());    System.out.println("Path:"+f.getPath());    if (f.exists()){     System.out.println("File exists.");     System.out.print((f.canRead()?" and is Readable":""));//判断函数,如果满足条件,输出前者,否则输出后者     System.out.print((f.canWrite()?"and is Writable":""));     System.out.print(".");     System.out.println("File is"+f.length()+"bytes.");    }    else{     System.out.println("File does not exist.");    }   } }

Java初学者备忘录(2)

时间:2010-12-15

第二个例子是一个存储电话信息的小程序,用户输入姓名和电话号码,程序将其存入phone.numbers文件中,通过FileOutputStream来实现

import java.io.*; class phones{   static FileOutputStream fos;   public static final int lineLength=81;   public static void main(String args[])throws IOException{    byte[] phone=new byte[lineLength];    byte[] name=new byte[lineLength];    int i;    fos=new FileOutputStream("phone.numbers");    while(true){     System.err.println("Enter a name(enter ''done'' to quit)");     readLine(name);     if ("done".equalsIgnoreCase(new String(name,0,0,4))){      break;     }     System.err.println("Enter the phone number");     readLine(phone);     for (i=0;phone[i]!=0;i++){      fos.write(phone[i]);     }     fos.write('','');    

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号