JAVA IO操作

    public static void main(String[] args){
        
        try{
            FileOutputStream out = new FileOutputStream("d://javaIO/ javaObject.txt");
            ObjectOutputStream os = new ObjectOutputStream(out);
            
            String ss = "this is string test";
            int i = 100;
            
            os.writeObject(ss);
            os.writeObject(i);
            
            out.close();
            os.close();
            
//            ObjectInputStream is = new ObjectInputStream(new FileInputStream("d://javaIO/ javaObject.txt"));
//            
//            Object oo = is.readObject();
//            System.out.println(oo);
//            is.close();
            
        } catch (IOException e){
            e.printStackTrace();
        } catch (Exception e){
            e.printStackTrace();
        }
    }

 

你可能感兴趣的:(java,exception,String,IO,object,OO)