自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

  • 博客(6)
  • 收藏
  • 关注

转载 java读写二进制流

写入 public static void main(String[] args) throws FileNotFoundException, IOException { ObjectOutputStream oos=null; try{ //创建ObjectOutputStre...

2017-05-06 19:39:00 136

转载 java DataOutputStream DataInputStream

/** * 读取和写入不同基本类型数据 * * @throws IOException */ public static void main(String[] args) throws IOException { try{ FileOutputStream out1=...

2017-05-06 17:31:00 81

转载 java BufferedWriter BufferedReader

public static void main(String[] args) { try { // 创建一个FileWriter 对象 FileWriter fw = new FileWriter("d:\\test\\hello.txt"); // 创建一个Buffer...

2017-05-06 17:11:00 95

转载 java FileOutStream写文件

public static void main(String[] args) throws IOException { // 实例化FileOutputStream对象,如果文件不存在,会创建文件 FileOutputStream fos = new FileOutputStream(...

2017-05-06 16:55:00 167

转载 java FileInputStream读文件

public static void main(String[] args) throws IOException { FileInputStream fis = new FileInputStream("d:/test/hello.txt"); int data; System....

2017-05-06 16:45:00 72

转载 java操作file

public static void main(String[] args) throws IOException { // 查看文件属性 File f1 = new File("d:\\test", "hello.txt"); System.out.println("文件名:" ...

2017-05-06 16:38:00 79

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除