本文介绍了java中的文件处理的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 当我打开文件rahul.txt所以它显示我不是以字节形式存储的字符,第二个问题是当我使用FileInputStream读取文件rahul.txt所以它没有读取。 package com.fileh; import java .io。*; 公共类Writedata { public static void main(String args []) { try { FileOutputStream fout = new FileOutputStream(rahul.txt); String s =我的名字是rahul; byte [] b = s.getBytes(); fout.write(b) ; fout.close(); } catch(IOException ioe) { } } } when i open file rahul.txt so it shows characters which i stored not in form of bytes and second problem is that when i use FileInputStream to read file rahul.txt so it did not read .package com.fileh;import java .io.*;public class Writedata {public static void main(String args[]){try{FileOutputStream fout= new FileOutputStream("rahul.txt");String s="my name is rahul";byte[] b =s.getBytes();fout.write(b);fout.close();}catch(IOException ioe){}}}推荐答案 这篇关于java中的文件处理的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!
09-23 14:51