数字农业是将数字化信息作为农业生产要素,用现代信息技术对农业对象、资源环境和农业生产过程进行数字化表达、可视化呈现、网络化管理,奠定精准农业和智慧农业的数字资源基础。( )
查看答案
为了向文件hello.txt尾加数据,下列哪个是正确创建指向hello.txt的流?
A. try { OutputStream out = new FileOutputStream ("hello.txt"); }catch(IOException e){ }
B. try { OutputStream out = new FileOutputStream ("hello.txt",true);}catch(IOException e){ }
C. try { OutputStream out = new FileOutputStream ("hello.txt" ,false);}catch(IOException e){ }
D. try { OutputStream out = new OutputStream ("hello.txt" ,true);}catch(IOException e){ }
FileInputStream流的read方法和FileReader流的read方法有何不同?
BufferedReader流能直接指向一个文件吗?