- 1、本文档共27页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
* import java.io.*; public class DemoFileRW{ public static void main(String args[ ]){ File file=new File(hello.txt); try{ FileWriter out=new FileWriter(file); out.write(欢迎Tom!!!); out.close(); FileReader in=new FileReader(file); char[] inchar=new char[100]; int len=in.read(inchar); String str=new String(inchar,0,len); System.out.println(str); in.close(); } catch(IOException e){ System.out.println(e); } } } * void write(String s,int off,int len) 把字符串s的一部分写入到目的地。 * import java.io.*; public class BufferedRWDemo { public static void main(String[] args) { try { BufferedReader bufReader = new BufferedReader( new InputStreamReader(System.in)); File outFile=new File(result.txt); BufferedWriter bufWriter = new BufferedWriter(new FileWriter(outFile)); String input = null; while(!(input = bufReader.readLine()).equals(quit)) { bufWriter.write(input); bufWriter.newLine(); } bufReader.close(); bufWriter.close(); } catch(ArrayIndexOutOfBoundsException e) { e.printStackTrace(); } catch(IOException e) { e.printStackTrace(); } } } * * /blog/static/382167972011669267672/ * /blog/static/382167972011669267672/ * import java.io.*; class Goods implements Serializable{ String name=null; double unitPrice; Goods(String name,double unitPrice){ =name; this.unitPrice=unitPrice; } public void setUnitPrice(double unitPrice){ this.unitPrice=unitPrice; } public void setName(String name){ =name; } public String getName(){ return name; } public double getUnitPrice(){ return unitPrice; } } public class DemoSerializable{ public static void main(String args[ ]){ Goods TV1=new Goods(Haier,3468); Goods TV2=new Goods(Samsung,3868); System.out.printf(\nTV1:%s,%f,TV1.getName(),TV1.getUnitPrice()); System.out.printf(\nTV2:%s,%f,TV2.getName(),TV2.getUnitPrice()); try{ FileOutputStream fileOut=new FileOutputStream(a.txt); ObjectOutputStream objectOut=new ObjectOutputStream(fil
您可能关注的文档
- 用示波器电流探头做小电流测试的方法.ppt
- 新词新语之我见.pptx
- 由文字组成的图画.ppt
- 现代企业商务礼仪.ppt
- 甲骨文字(图文字).ppt
- 现代商务英语写作的基本原则.ppt
- 现代分析-2010-7(SPM).ppt
- 电信网络基本知识.ppt
- 电力工程专业英语翻译-12015.ppt
- 电信运营商精准营销流量推送广告媒体介绍2015.ppt
- 用方向和距离描述位置(例1)(教学设计)2024-2025学年六年级上册数学人教版.docx
- Unit 8 Is there a post office near here Section B 2a-2c 教学设计2023-2024学年人教版英语七年级下册.docx
- 第十章 静电场中的能量 素养检测2023-2024学年新教材高中物理必修第三册同步教学设计(人教版2019 江苏专用).docx
- 2《学会沟通交流》第一课时 (教学设计)2024-2025学年统编版道德与法治五年级上册.docx
- 7 生命最宝贵 :爱护身体,珍惜生命(教学设计)部编版道德与法治三年级上册.docx
- 第11课《自定主题活动二:制作树叶书签》(教学设计)-2024-2025学年三年级上册综合实践活动浙教版.docx
- 6.3分享我的一天(教学设计)-2024-2025学年一年级数学上册 北师大版.docx
- 熊猫欢欢自画像 教学设计 三年级下册信息技术川教版.docx
- 7.5 三角形的内角和定理 第2课时 教学设计-2024—2025学年北师大版数学八年级上册.docx
- 中图版选修2:3.2《海水的运动》教案地理.docx
文档评论(0)